Skip to content

Commit

Permalink
Commented out noisy debugging
Browse files Browse the repository at this point in the history
Signed-off-by: snipe <[email protected]>
  • Loading branch information
snipe committed Oct 14, 2023
1 parent 4e3d570 commit 8c4bf74
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions app/Providers/SettingsServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ public function boot()
$limit = abs($int_limit);
}

\Log::debug('Max in env: '.config('app.max_results'));
\Log::debug('Original requested limit: '.request('limit'));
\Log::debug('Int limit: '.$int_limit);
\Log::debug('Modified limit: '.$limit);
\Log::debug('------------------------------');
// \Log::debug('Max in env: '.config('app.max_results'));
// \Log::debug('Original requested limit: '.request('limit'));
// \Log::debug('Int limit: '.$int_limit);
// \Log::debug('Modified limit: '.$limit);
// \Log::debug('------------------------------');


return $limit;
Expand All @@ -52,9 +52,9 @@ public function boot()
// Make sure the offset is actually set and is an integer
\App::singleton('api_offset_value', function () {
$offset = intval(request('offset'));
\Log::debug('Original requested offset: '.request('offset'));
\Log::debug('Modified offset: '.$offset);
\Log::debug('------------------------------');
// \Log::debug('Original requested offset: '.request('offset'));
// \Log::debug('Modified offset: '.$offset);
// \Log::debug('------------------------------');


return $offset;
Expand Down

0 comments on commit 8c4bf74

Please sign in to comment.