CLI: Fix logging setup

This commit is contained in:
Eric Lippmann 2014-10-16 15:59:35 +02:00
parent 501aca42b9
commit 6dfefb0e73

View File

@ -51,10 +51,9 @@ class Cli extends ApplicationBootstrap
Logger::create( Logger::create(
new Zend_Config( new Zend_Config(
array( array(
'enable' => true, 'level' => Logger::INFO,
'level' => Logger::$INFO, 'log' => 'file',
'type' => 'file', 'file' => 'php://stderr'
'target' => 'php://stderr'
) )
) )
); );