diff options
| author | Asko Nõmm <asko@nth.ee> | 2024-11-15 11:08:38 +0200 |
|---|---|---|
| committer | Asko Nõmm <asko@nth.ee> | 2024-11-15 11:08:38 +0200 |
| commit | c69944457919ddf133da7573fe9aa41246f98957 (patch) | |
| tree | fb740791787f0af18324d578af675245f35f5533 /src/Level.php | |
| parent | 9291fc3af8d0d87b58ef2de96f5d650038db32c0 (diff) | |
Lowercase enum values for level.
Diffstat (limited to 'src/Level.php')
| -rw-r--r-- | src/Level.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Level.php b/src/Level.php index 5e573bc..56cb05c 100644 --- a/src/Level.php +++ b/src/Level.php @@ -7,12 +7,12 @@ namespace Asko\Loggr; */ enum Level: string { - case Emergency = "EMERGENCY"; - case Alert = "ALERT"; - case Critical = "CRITICAL"; - case Error = "ERROR"; - case Warning = "WARNING"; - case Notice = "NOTICE"; - case Info = "INFO"; - case Debug = "DEBUG"; + case Emergency = "emergency"; + case Alert = "alert"; + case Critical = "critical"; + case Error = "error"; + case Warning = "warning"; + case Notice = "notice"; + case Info = "info"; + case Debug = "debug"; } |
