From c290aaa774bea3cd76f9292d7bea2d747e8da414 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sat, 12 Jun 2021 07:39:23 +0200 Subject: [PATCH] Remove some debug logging --- app/Http/Middleware/Installer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }