php-censor/app/loggerconfig.example.php

17 lines
474 B
PHP
Raw Normal View History

<?php
2014-03-20 16:33:25 +01:00
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
];