diff --git a/README.md b/README.md index 06c10ef..c409c03 100644 --- a/README.md +++ b/README.md @@ -80,6 +80,10 @@ return [ * Log: * Writes the N+1 queries into the Laravel.log file * \BeyondCode\QueryDetector\Outputs\Log::class + * + * Console: + * Writes the N+1 queries into your browsers console log + * \BeyondCode\QueryDetector\Outputs\Console::class */ 'output' => [ \BeyondCode\QueryDetector\Outputs\Alert::class diff --git a/config/config.php b/config/config.php index 75dc268..392877c 100644 --- a/config/config.php +++ b/config/config.php @@ -36,6 +36,10 @@ * Log: * Writes the N+1 queries into the Laravel.log file * \BeyondCode\QueryDetector\Outputs\Log::class + * + * Console: + * Writes the N+1 queries into your browsers console log + * \BeyondCode\QueryDetector\Outputs\Console::class */ 'output' => [ \BeyondCode\QueryDetector\Outputs\Log::class,