php-censor/app/loggerconfig.example.php

25 lines
695 B
PHP
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/
*/
2016-04-20 12:30:26 +02:00
return [
/** Loggers attached to every command */
"_" => function() {
2016-04-20 12:30:26 +02:00
return [
2014-03-20 16:33:25 +01:00
new \Monolog\Handler\StreamHandler(__DIR__ . DIRECTORY_SEPARATOR . 'errors.log', \Monolog\Logger::ERROR),
2016-04-20 12:30:26 +02:00
];
},
/** Loggers for the RunCommand */
'RunCommand' => function() {
2016-04-20 12:30:26 +02:00
return [
2016-04-17 08:34:12 +02:00
new \Monolog\Handler\RotatingFileHandler(__DIR__ . DIRECTORY_SEPARATOR . 'everything', 3, \Monolog\Logger::DEBUG),
2016-04-20 12:30:26 +02:00
];
2014-03-20 16:33:25 +01:00
},
2016-04-20 12:30:26 +02:00
];