Skip to content

Commit

Permalink
Merge pull request #9 from productsupcom/symfony_notice_fix
Browse files Browse the repository at this point in the history
Fixes error when calling ->notice() on logger
m038 authored Mar 24, 2017
2 parents 16240d5 + 18f67f7 commit c9e359f
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
@@ -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',
);

0 comments on commit c9e359f

Please sign in to comment.