From 21ceea0aed29461df5cca80538b436eb2b23a4ef Mon Sep 17 00:00:00 2001 From: snipe Date: Fri, 23 Oct 2020 08:19:04 -0700 Subject: [PATCH] Removed extra debugging --- app/Models/Setting.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/Models/Setting.php b/app/Models/Setting.php index ece4a449c4..8384d142b5 100755 --- a/app/Models/Setting.php +++ b/app/Models/Setting.php @@ -120,9 +120,6 @@ class Setting extends Model try { $usercount = User::withTrashed()->count(); $settingsCount = self::count(); - \Log::debug('User table and settings table exist and have records.'); - \Log::debug('Settings: '.$settingsCount ); - \Log::debug('Users: '.$usercount ); return $usercount > 0 && $settingsCount > 0; } catch (\Throwable $th) { \Log::debug('User table and settings table DO NOT exist or DO NOT have records');