modified CliController to use stderr as default error stream

This commit is contained in:
Anton Grebnev
2012-10-08 19:29:53 +04:00
parent 774c86acd2
commit 910a770ea2

View File

@ -24,7 +24,7 @@ class CliController
protected function __construct()
{
ErrorHandler::init();
$this->error_stream = Config::get('ErrorStream');
$this->error_stream = Config::get('ErrorStream', 'php://stderr');
}
/**