pub enum LogLevel {
Trace,
Debug,
Info,
Warn,
Error,
}Expand description
Log verbosity.
Variants§
Trace
Very chatty, useful when debugging a kevy internal bug.
Debug
Per-command / per-event detail; turn on locally to chase issues.
Info
Default; startup banner, WARNs, errors, key lifecycle events.
Warn
Only non-fatal warnings (e.g. unprotected bind) and errors.
Error
Only fatal errors.
Implementations§
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