Enum androidy_log::LogPriority [−][src]
#[repr(i32)]
pub enum LogPriority {
UNKNOWN,
DEFAULT,
VERBOSE,
DEBUG,
INFO,
WARN,
ERROR,
FATAL,
SILENT,
}
Expand description
Priority of the log message.
Variants
UNKNOWN
For internal use only.
DEFAULT
The default priority, for internal use only.
VERBOSE
Verbose logging.
DEBUG
Debug logging.
INFO
Informational logging.
WARN
Warning logging.
For use with recoverable failures.
ERROR
Error logging.
For use with unrecoverable failures.
FATAL
Fatal logging.
For use when aborting.
SILENT
For internal use only.