Update logging for Laravel 5.6 #1221

This commit is contained in:
James Cole
2018-03-07 20:47:39 +01:00
parent 49d0ed0c1b
commit 47c9f1e9b8
7 changed files with 112 additions and 32 deletions

View File

@@ -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