mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-15 16:57:09 +00:00
Do not overrule logging when it’s not set to daily. [skip ci]
This commit is contained in:
@@ -51,7 +51,7 @@ $app->singleton(
|
|||||||
);
|
);
|
||||||
|
|
||||||
/* Overrule logging */
|
/* Overrule logging */
|
||||||
if ($app->make('config')->get('app.log') === 'daily') {
|
if (env('APP_LOG', 'errorlog') === 'daily') {
|
||||||
$app->configureMonologUsing(
|
$app->configureMonologUsing(
|
||||||
function (Logger $monolog) use ($app) {
|
function (Logger $monolog) use ($app) {
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user