Crate nonblocking_logger
Source pub use enums::log_level::LogLevel;
pub use structs::logger::Logger;
pub use global::debug;
pub use global::debug_lazy;
pub use global::error;
pub use global::error_lazy;
pub use global::get_global_mut;
pub use global::info;
pub use global::info_lazy;
pub use global::log;
pub use global::log_lazy;
pub use global::trace;
pub use global::trace_lazy;
pub use global::warning;
pub use global::warning_lazy;
pub use utils::*;
- enums
- global
- macros
- structs
- utils
- debug
- Log a debug message using format string syntax
- debug_lazy
- Log a debug message with lazy evaluation using format string syntax
- debug_lazy_with
- Log a debug message with lazy evaluation using format string syntax with a specific logger
- debug_with
- Log a debug message using format string syntax with a specific logger
- error
- Log an error message using format string syntax
- error_lazy
- Log an error message with lazy evaluation using format string syntax
- error_lazy_with
- Log an error message with lazy evaluation using format string syntax with a specific logger
- error_with
- Log an error message using format string syntax with a specific logger
- info
- Log an info message using format string syntax
- info_lazy
- Log an info message with lazy evaluation using format string syntax
- info_lazy_with
- Log an info message with lazy evaluation using format string syntax with a specific logger
- info_with
- Log an info message using format string syntax with a specific logger
- log
- Macros for convenient logging with string formatting support
- log_lazy
- Log a message with lazy evaluation using format string syntax
- log_lazy_with
- Log a message with lazy evaluation using format string syntax with a specific logger
- log_with
- Log a message with a specific logger using format string syntax (always outputs, no level filtering)
- trace
- Log a trace message using format string syntax
- trace_lazy
- Log a trace message with lazy evaluation using format string syntax
- trace_lazy_with
- Log a trace message with lazy evaluation using format string syntax with a specific logger
- trace_with
- Log a trace message using format string syntax with a specific logger
- warning
- Log a warning message using format string syntax
- warning_lazy
- Log a warning message with lazy evaluation using format string syntax
- warning_lazy_with
- Log a warning message with lazy evaluation using format string syntax with a specific logger
- warning_with
- Log a warning message using format string syntax with a specific logger