We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4987308 commit 5450270Copy full SHA for 5450270
src/Log/Level.php
@@ -25,8 +25,8 @@ public static function fromString(string $level): Level
25
"critical", "severe", "fatal" => Level::CRITICAL,
26
"error", "stderr" => Level::ERROR,
27
"warning", "warn" => Level::WARNING,
28
- "notice" => Level::NOTICE,
29
- "debug" => Level::DEBUG,
+ "notice", "fine" => Level::NOTICE,
+ "debug", "finer", "finest" => Level::DEBUG,
30
default => Level::INFO
31
};
32
}
0 commit comments