Logger : Stop only at notice

This commit is contained in:
Michael RICOIS 2017-04-13 10:41:18 +02:00
parent d1d3448e2d
commit 1f90b825f4

View File

@ -123,7 +123,7 @@ class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
if (APPLICATION_ENV == 'development') {
$level = Logger::DEBUG;
} else {
$level = Logger::INFO;
$level = Logger::NOTICE;
}
$log->pushHandler(new StreamHandler($logFile), $level);