Restore log routine.

This commit is contained in:
James Cole 2017-12-05 20:50:19 +01:00
parent e4a0a718d1
commit 9a9257176a
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E

View File

@ -51,36 +51,34 @@ $app->singleton(
);
/* Overrule logging */
if (env('APP_LOG', 'errorlog') === 'daily') {
$app->configureMonologUsing(
function (Logger $monolog) use ($app) {
$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);
$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);
}
);
/*
|--------------------------------------------------------------------------