Remove some debug logging

This commit is contained in:
James Cole 2021-06-12 07:39:23 +02:00
parent def456bd9b
commit c290aaa774
No known key found for this signature in database
GPG Key ID: B5669F9493CDE38D

View File

@ -87,7 +87,7 @@ class Installer
*/ */
private function hasNoTables(): bool private function hasNoTables(): bool
{ {
Log::debug('Now in routine hasNoTables()'); //Log::debug('Now in routine hasNoTables()');
try { try {
DB::table('users')->count(); DB::table('users')->count();
@ -107,7 +107,7 @@ class Installer
} }
throw new FireflyException(sprintf('Could not access the database: %s', $message), 0, $e); 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; return false;
} }