Skip to content

Commit

Permalink
Fixes error when calling ->notice() on logger
Browse files Browse the repository at this point in the history
  • Loading branch information
m038 committed Mar 24, 2017
1 parent 16240d5 commit 18f67f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/Handler/SymfonyConsoleHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ class SymfonyConsoleHandler extends AbstractHandler
LogLevel::CRITICAL => 'error',
LogLevel::ERROR => 'error',
LogLevel::WARNING => 'info',
LogLevel::DEBUG => 'info',
LogLevel::NOTICE => 'info',
LogLevel::INFO => 'info',
LogLevel::DEBUG => 'info',
LogLevel::TRACE => 'fg=gray',
);

Expand Down

0 comments on commit 18f67f7

Please sign in to comment.