blob: fd6c128af1a7330c6156d5fbabf38a83e86d1787 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//! ref: composer/vendor/psr/log/Psr/Log/LogLevel.php
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct LogLevel;
impl LogLevel {
pub const EMERGENCY: &'static str = "emergency";
pub const ALERT: &'static str = "alert";
pub const CRITICAL: &'static str = "critical";
pub const ERROR: &'static str = "error";
pub const WARNING: &'static str = "warning";
pub const NOTICE: &'static str = "notice";
pub const INFO: &'static str = "info";
pub const DEBUG: &'static str = "debug";
}
|