@seydx/rtsp / NativeLoggingOptions
Interface: NativeLoggingOptions
Defined in: native-logging.ts:9
Options for installNativeLogging.
Properties
ignore?
optionalignore?: (string|RegExp)[]
Defined in: native-logging.ts:27
Extra substrings/patterns whose messages should be dropped.
Merged with a small built-in list of known-noise lines. Useful when a higher maxLevel is chosen for debugging but a few chatty lines should still be suppressed.
maxLevel?
optionalmaxLevel?:AVLogLevel
Defined in: native-logging.ts:18
Highest (most verbose) FFmpeg level to forward.
Messages more verbose than this are dropped inside node-av before they ever reach JavaScript, so they neither hit the logger nor leak to stderr. Defaults to AV_LOG_WARNING, which keeps only warnings and errors and silently discards the usual encoder/muxer chatter (e.g. Qavg, queue-flush notices).