1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-10-19 15:49:19 +02:00

Add support for PSR-3 levels to all public APIs accepting levels, fixes #421

This commit is contained in:
Jordi Boggiano
2014-09-30 13:59:45 +01:00
parent 43ca6dc06b
commit feb19af2d4
13 changed files with 91 additions and 15 deletions

View File

@@ -26,7 +26,7 @@ class GitProcessor
public function __construct($level = Logger::DEBUG)
{
$this->level = $level;
$this->level = Logger::toMonologLevel($level);
}
/**