diff --git a/config/config.php b/config/config.php index e4a6e06..03f5ec7 100644 --- a/config/config.php +++ b/config/config.php @@ -6,7 +6,7 @@ * If this is set to "null", the app.debug config value will be used. */ 'enabled' => env('QUERY_DETECTOR_ENABLED', null), - + /* * Threshold level for the N+1 query detection. If a relation query will be * executed more then this amount, the detector will notify you about it. @@ -27,6 +27,13 @@ //] ], + /* + * Here you can set a specific log channel to write to + * in case you are trying to isolate queries or have a lot + * going on in the laravel.log. Defaults to laravel.log though. + */ + 'log_channel' => env('QUERY_DETECTOR_LOG_CHANNEL', 'daily'), + /* * Define the output format that you want to use. Multiple classes are supported. * Available options are: diff --git a/src/Outputs/Log.php b/src/Outputs/Log.php index 874b395..7563530 100644 --- a/src/Outputs/Log.php +++ b/src/Outputs/Log.php @@ -15,22 +15,27 @@ public function boot() public function output(Collection $detectedQueries, Response $response) { - LaravelLog::info('Detected N+1 Query'); + $this->log('Detected N+1 Query'); foreach ($detectedQueries as $detectedQuery) { $logOutput = 'Model: '.$detectedQuery['model'] . PHP_EOL; - + $logOutput .= 'Relation: '.$detectedQuery['relation'] . PHP_EOL; $logOutput .= 'Num-Called: '.$detectedQuery['count'] . PHP_EOL; - + $logOutput .= 'Call-Stack:' . PHP_EOL; foreach ($detectedQuery['sources'] as $source) { $logOutput .= '#'.$source->index.' '.$source->name.':'.$source->line . PHP_EOL; } - LaravelLog::info($logOutput); + $this->log($logOutput); } } + + private function log(string $message) + { + LaravelLog::channel(config('querydetector.log_channel'))->info($message); + } }