mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-18 18:44:16 +00:00
Fix logging in Sandstorm.
This commit is contained in:
@@ -50,35 +50,37 @@ $app->singleton(
|
|||||||
FireflyIII\Exceptions\Handler::class
|
FireflyIII\Exceptions\Handler::class
|
||||||
);
|
);
|
||||||
|
|
||||||
/* Overrule logging */
|
/* Overrule logging if not Sandstorm */
|
||||||
$app->configureMonologUsing(
|
if (!(env('IS_SANDSTORM') === true)) {
|
||||||
function (Logger $monolog) use ($app) {
|
$app->configureMonologUsing(
|
||||||
|
function (Logger $monolog) use ($app) {
|
||||||
|
|
||||||
$interface = php_sapi_name();
|
$interface = php_sapi_name();
|
||||||
$path = $app->storagePath() . '/logs/ff3-' . $interface . '.log';
|
$path = $app->storagePath() . '/logs/ff3-' . $interface . '.log';
|
||||||
$level = 'debug';
|
$level = 'debug';
|
||||||
if ($app->bound('config')) {
|
if ($app->bound('config')) {
|
||||||
$level = $app->make('config')->get('app.log_level', 'debug');
|
$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);
|
||||||
}
|
}
|
||||||
$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);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
Reference in New Issue
Block a user