useDailyFiles( $this->app->storagePath() . '/logs/firefly-iii.log', $this->maxFiles(), $this->logLevel() ); } /** * Configure the Monolog handlers for the application. * * @param \Illuminate\Log\Writer $log * * @return void */ protected function configureSingleHandler(Writer $log) { $log->useFiles( $this->app->storagePath() . '/logs/firefly-iii.log', $this->logLevel() ); } }