Skip to content

Commit 5450270

Browse files
committed
map more log levels
1 parent 4987308 commit 5450270

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Log/Level.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ public static function fromString(string $level): Level
2525
"critical", "severe", "fatal" => Level::CRITICAL,
2626
"error", "stderr" => Level::ERROR,
2727
"warning", "warn" => Level::WARNING,
28-
"notice" => Level::NOTICE,
29-
"debug" => Level::DEBUG,
28+
"notice", "fine" => Level::NOTICE,
29+
"debug", "finer", "finest" => Level::DEBUG,
3030
default => Level::INFO
3131
};
3232
}

0 commit comments

Comments
 (0)