diff --git a/app/Http/Middleware/Installer.php b/app/Http/Middleware/Installer.php index 3207fbc5a4..d012111b14 100644 --- a/app/Http/Middleware/Installer.php +++ b/app/Http/Middleware/Installer.php @@ -52,7 +52,7 @@ class Installer */ public function handle($request, Closure $next) { - Log::debug(sprintf('Installer middleware for URL %s', $request->url())); + //Log::debug(sprintf('Installer middleware for URL %s', $request->url())); // ignore installer in test environment. if ('testing' === config('app.env')) { return $next($request); @@ -61,7 +61,7 @@ class Installer $url = $request->url(); $strpos = stripos($url, '/install'); if (false !== $strpos) { - Log::debug(sprintf('URL is %s, will NOT run installer middleware', $url)); + //Log::debug(sprintf('URL is %s, will NOT run installer middleware', $url)); return $next($request); }