LogLevel class Null safety

Constructors

LogLevel()

Properties

hashCode int
The hash code for this object. [...]
read-only, inherited
runtimeType Type
A representation of the runtime type of the object.
read-only, inherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed. [...]
inherited
toString() String
A string representation of this object. [...]
inherited

Operators

operator ==(Object other) bool
The equality operator. [...]
inherited

Static Methods

levelToString(int level) String
Returns log level string from int

Constants

avLogDebug → const int
Stuff which is only useful for libav* developers.
48
avLogError → const int
Something went wrong and cannot losslessly be recovered. However, not all future data is affected.
16
avLogFatal → const int
Something went wrong and recovery is not possible. For example, no header was found for a format which depends on headers or an illegal combination of parameters is used.
8
avLogInfo → const int
int Standard information.
32
avLogPanic → const int
Something went really wrong and we will crash now.
0
avLogQuiet → const int
Print no output.
-8
avLogStderr → const int
This log level is used to specify logs printed to stderr by ffmpeg. Logs that has this level are not filtered and always redirected.
-16
avLogTrace → const int
Extremely verbose debugging, useful for libav* development.
56
avLogVerbose → const int
Detailed information.
40
avLogWarning → const int
Something somehow does not look correct. This may or may not lead to problems. An example would be the use of '-vstrict -2'.
24