mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Update logging for Laravel 5.6 #1221
This commit is contained in:
@@ -70,38 +70,6 @@ $app->singleton(
|
||||
FireflyIII\Exceptions\Handler::class
|
||||
);
|
||||
|
||||
///* Overrule logging if not Sandstorm */
|
||||
//if (!(env('IS_SANDSTORM') === true)) {
|
||||
// $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
|
||||
|
Reference in New Issue
Block a user