phpci/loggerconfig.php.example

25 lines
709 B
Plaintext
Raw Normal View History

<?php
2014-03-20 16:33:25 +01:00
/**
* 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(
2014-03-20 16:33:25 +01:00
new \Monolog\Handler\StreamHandler(__DIR__ . DIRECTORY_SEPARATOR . 'errors.log', \Monolog\Logger::ERROR),
);
},
/** Loggers for the RunCommand */
'RunCommand' => function() {
return array(
2014-03-20 16:33:25 +01:00
new \Monolog\Handler\RotatingFileHandler(__DIR__ . DIRECTORY_SEPARATOR . 'everything',3, \Monolog\Logger::DEBUG),
);
2014-03-20 16:33:25 +01:00
},
2015-02-12 15:11:58 +01:00
);