diff options
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"; } |
