We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 879d4c7 commit a59af64Copy full SHA for a59af64
1 file changed
src/Logs/LogLevel.php
@@ -74,7 +74,6 @@ public function toPsrLevel(): string
74
{
75
switch ($this->value) {
76
case 'trace':
77
- return \Psr\Log\LogLevel::NOTICE;
78
case 'debug':
79
return \Psr\Log\LogLevel::DEBUG;
80
case 'warn':
@@ -83,6 +82,7 @@ public function toPsrLevel(): string
83
82
return \Psr\Log\LogLevel::ERROR;
84
case 'fatal':
85
return \Psr\Log\LogLevel::CRITICAL;
+ case 'info':
86
default:
87
return \Psr\Log\LogLevel::INFO;
88
}
0 commit comments