diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-17 02:25:52 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-17 02:25:52 +0900 |
| commit | 7f606f36fef0c0467c3c0db3d0da33af486dae8a (patch) | |
| tree | c3f0a3340e1dbfc5245964a775b73030d5abf44e /crates/shirabe-external-packages/src/psr/log/log_level.rs | |
| parent | 9389ddbf06f6d38445c277640cab7b2270057790 (diff) | |
| download | php-shirabe-7f606f36fef0c0467c3c0db3d0da33af486dae8a.tar.gz php-shirabe-7f606f36fef0c0467c3c0db3d0da33af486dae8a.tar.zst php-shirabe-7f606f36fef0c0467c3c0db3d0da33af486dae8a.zip | |
feat(port): add stub implementations of shirabe-external-packages
Diffstat (limited to 'crates/shirabe-external-packages/src/psr/log/log_level.rs')
| -rw-r--r-- | crates/shirabe-external-packages/src/psr/log/log_level.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/crates/shirabe-external-packages/src/psr/log/log_level.rs b/crates/shirabe-external-packages/src/psr/log/log_level.rs new file mode 100644 index 0000000..7232fa0 --- /dev/null +++ b/crates/shirabe-external-packages/src/psr/log/log_level.rs @@ -0,0 +1,13 @@ +#[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"; +} |
