diff --git a/app/Http/Middleware/Installer.php b/app/Http/Middleware/Installer.php index 4a4e5e6c8f..4bd9d29a01 100644 --- a/app/Http/Middleware/Installer.php +++ b/app/Http/Middleware/Installer.php @@ -87,7 +87,7 @@ class Installer */ private function hasNoTables(): bool { - Log::debug('Now in routine hasNoTables()'); + //Log::debug('Now in routine hasNoTables()'); try { DB::table('users')->count(); @@ -107,7 +107,7 @@ class Installer } throw new FireflyException(sprintf('Could not access the database: %s', $message), 0, $e); } - Log::debug('Everything seems OK with the tables.'); + //Log::debug('Everything seems OK with the tables.'); return false; }