mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Solution for #926
This commit is contained in:
parent
353b3fcba7
commit
466ff4fe3c
@ -13,6 +13,10 @@ declare(strict_types=1);
|
|||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
use Monolog\Formatter\LineFormatter;
|
||||||
|
use Monolog\Handler\RotatingFileHandler;
|
||||||
|
use Monolog\Logger;
|
||||||
|
|
||||||
bcscale(12);
|
bcscale(12);
|
||||||
|
|
||||||
|
|
||||||
@ -46,6 +50,35 @@ $app->singleton(
|
|||||||
FireflyIII\Exceptions\Handler::class
|
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
|
| Return The Application
|
||||||
|
Loading…
Reference in New Issue
Block a user