Enum LogLevel
Specifies the severity level of messages generated by FFmpeg.
Namespace: FFmpeg.Logging
Assembly: FFmpeg.dll
Syntax
public enum LogLevel
Remarks
Log levels determine which messages are emitted by FFmpeg's logging system. Lower-severity messages provide more diagnostic information, while higher severities indicate increasingly serious conditions.
Fields
| Name | Description |
|---|---|
| Debug | Logs detailed debugging information intended for developers. |
| Error | Logs recoverable errors that prevent the requested operation from completing. |
| Fatal | Logs unrecoverable errors that typically terminate the application. |
| Info | Logs informational messages about normal operation. |
| Panic | Logs fatal errors that cause the current operation to fail. |
| Quiet | Disables all logging output. |
| Trace | Logs highly detailed tracing information. |
| Verbose | Logs additional diagnostic information. |
| Warning | Logs warnings about unexpected conditions that do not prevent continued operation. |