Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow for query logger to write to different logs #74

Merged
merged 1 commit into from
Feb 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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:
Expand Down
13 changes: 9 additions & 4 deletions src/Outputs/Log.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}