Removed unused log messages

This commit is contained in:
Miguel Nogueira 2022-02-07 19:18:02 +00:00
parent e5a710642a
commit 09e48544d1

View File

@ -39,16 +39,9 @@ class IP
if (config('demo.is_enabled') || config('app.hide_ips')) if (config('demo.is_enabled') || config('app.hide_ips'))
{ {
Log::debug('Global shouldCollect: ', [
'shouldCollect' => false
]);
return false; // do not collect! return false; // do not collect!
} }
Log::debug('Global shouldCollect: ', [
'shouldCollect' => true
]);
return true; return true;
} }