Logger on

This commit is contained in:
aliaxander 2016-02-21 01:12:08 +03:00
parent aab9bcf605
commit 575860304a
2 changed files with 25 additions and 1 deletions

2
.gitignore vendored
View file

@ -1,6 +1,7 @@
/composer.lock
.idea
vendor/
.gitignore
composer.phar
config.php
.DS_Store
@ -10,7 +11,6 @@ config.php
.htaccess
PHPCI/config.yml
cache
/loggerconfig.php
/pluginconfig.php
PHPCI/Model/Migration.php
PHPCI/Model/Base/MigrationBase.php

24
loggerconfig.php Normal file
View file

@ -0,0 +1,24 @@
<?php
/**
* PHPCI - Continuous Integration for PHP
*
* @copyright Copyright 2014, Block 8 Limited.
* @license https://github.com/Block8/PHPCI/blob/master/LICENSE.md
* @link https://www.phptesting.org/
*/
return array(
/** Loggers attached to every command */
"_" => function() {
return array(
new \Monolog\Handler\StreamHandler(__DIR__ . DIRECTORY_SEPARATOR . 'errors.log', \Monolog\Logger::ERROR),
);
},
/** Loggers for the RunCommand */
'RunCommand' => function() {
return array(
new \Monolog\Handler\RotatingFileHandler(__DIR__ . DIRECTORY_SEPARATOR . 'everything',3, \Monolog\Logger::DEBUG),
);
},
);