pub enum LogLevel {
Verbose,
Debug,
Info,
Warn,
Error,
Fatal,
None,
}Expand description
Log severity levels supported by Mars Xlog.
Variants§
Verbose
Verbose diagnostic output.
Debug
Debug output for development and troubleshooting.
Info
Informational output for normal events.
Warn
Warning output for recoverable issues.
Error
Error output for failures that do not immediately abort the process.
Fatal
Fatal output for unrecoverable failures.
None
Logging disabled.
Trait Implementations§
impl Copy for LogLevel
impl Eq for LogLevel
impl StructuralPartialEq for LogLevel
Auto Trait Implementations§
impl Freeze for LogLevel
impl RefUnwindSafe for LogLevel
impl Send for LogLevel
impl Sync for LogLevel
impl Unpin for LogLevel
impl UnsafeUnpin for LogLevel
impl UnwindSafe for LogLevel
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more