CLI: Fix logging setup

This commit is contained in:
Eric Lippmann 2014-10-16 15:59:35 +02:00
parent 501aca42b9
commit 6dfefb0e73
1 changed files with 3 additions and 4 deletions

View File

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