mpv_log_level enum
Numeric log levels. The lower the number, the more important the message is. MPV_LOG_LEVEL_NONE is never used when receiving messages. The string in the comment after the value is the name of the log level as used for the mpv_request_log_messages() function. Unused numeric values are unused, but reserved for future use.
Values
- MPV_LOG_LEVEL_NONE → const mpv_log_level
-
const mpv_log_level(0)
- MPV_LOG_LEVEL_FATAL → const mpv_log_level
-
"no" - disable absolutely all messages
const mpv_log_level(10)
- MPV_LOG_LEVEL_ERROR → const mpv_log_level
-
"fatal" - critical/aborting errors
const mpv_log_level(20)
- MPV_LOG_LEVEL_WARN → const mpv_log_level
-
"error" - simple errors
const mpv_log_level(30)
- MPV_LOG_LEVEL_INFO → const mpv_log_level
-
"warn" - possible problems
const mpv_log_level(40)
- MPV_LOG_LEVEL_V → const mpv_log_level
-
"info" - informational message
const mpv_log_level(50)
- MPV_LOG_LEVEL_DEBUG → const mpv_log_level
-
"v" - noisy informational message
const mpv_log_level(60)
- MPV_LOG_LEVEL_TRACE → const mpv_log_level
-
"debug" - very noisy technical information
const mpv_log_level(70)
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- value → int
-
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent 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
-
fromValue(
int value) → mpv_log_level
Constants
-
values
→ const List<
mpv_log_level> - A constant List of the values in this enum, in order of their declaration.