Skip to content

Commit 8bcb5db

Browse files
committed
Update typescript definitions for logging
1 parent a1a6628 commit 8bcb5db

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

index.d.ts

+13
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,17 @@ export function licenses(): {
6767
/** List the available protocols */
6868
export function protocols(): { inputs: Array<string>, outputs: Array<string> }
6969

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+
7083
export as namespace Beamcoder

0 commit comments

Comments
 (0)