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,8 +51,7 @@ $app->singleton(
);
/* Overrule logging */
if (env('APP_LOG', 'errorlog') === 'daily') {
$app->configureMonologUsing(
$app->configureMonologUsing(
function (Logger $monolog) use ($app) {
$interface = php_sapi_name();
@ -79,8 +78,7 @@ if (env('APP_LOG', 'errorlog') === 'daily') {
$handler->setFormatter($formatter);
$monolog->pushHandler($handler);
}
);
}
);
/*
|--------------------------------------------------------------------------