Solution for #926

This commit is contained in:
James Cole 2017-10-15 07:52:15 +02:00
parent 353b3fcba7
commit 466ff4fe3c
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E

View File

@ -13,6 +13,10 @@ declare(strict_types=1);
|
*/
use Monolog\Formatter\LineFormatter;
use Monolog\Handler\RotatingFileHandler;
use Monolog\Logger;
bcscale(12);
@ -46,6 +50,35 @@ $app->singleton(
FireflyIII\Exceptions\Handler::class
);
/* Overrule logging */
$app->configureMonologUsing(
function (Logger $monolog) use ($app) {
$interface = php_sapi_name();
$path = $app->storagePath() . '/logs/ff3-' . $interface . '.log';
$level = 'debug';
if ($app->bound('config')) {
$level = $app->make('config')->get('app.log_level', 'debug');
}
$levels = [
'debug' => Logger::DEBUG,
'info' => Logger::INFO,
'notice' => Logger::NOTICE,
'warning' => Logger::WARNING,
'error' => Logger::ERROR,
'critical' => Logger::CRITICAL,
'alert' => Logger::ALERT,
'emergency' => Logger::EMERGENCY,
];
$useLevel = $levels[$level];
$formatter = new LineFormatter(null, null, true, true);
$handler = new RotatingFileHandler($path, 5, $useLevel);
$handler->setFormatter($formatter);
$monolog->pushHandler($handler);
}
);
/*
|--------------------------------------------------------------------------
| Return The Application