We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1a6628 commit 8bcb5dbCopy full SHA for 8bcb5db
index.d.ts
@@ -67,4 +67,17 @@ export function licenses(): {
67
/** List the available protocols */
68
export function protocols(): { inputs: Array<string>, outputs: Array<string> }
69
70
+/** Read or set the logging level
71
+ * `quiet` - print no output.
72
+ * `panic` - something went really wrong - crash will follow
73
+ * `fatal` - recovery not possible
74
+ * `error` - lossless recovery not possible
75
+ * `warning` - something doesn't look correct
76
+ * `info` - standard information - the default
77
+ * `verbose` - detailed information
78
+ * `debug` - stuff which is only useful for libav* developers
79
+ * `trace` - extremely verbose debugging for libav* developers
80
+ */
81
+export function logging(level?: string): string | undefined
82
+
83
export as namespace Beamcoder
0 commit comments