Get rid of logException()

This commit is contained in:
Claus-Justus Heine
2025-04-18 17:46:51 +02:00
parent 964260ab7a
commit dc5458e9a8
3 changed files with 5 additions and 11 deletions

View File

@@ -384,7 +384,7 @@ class SettingsController extends Controller
return $tables;
} catch (Exception $e) {
$this->logger->logException($e);
$this->logger->error('Error during table autocompletion', [ 'exception' => $e ]);
return [];
}
}
@@ -431,7 +431,7 @@ class SettingsController extends Controller
return $columns;
} catch (Exception $e) {
$this->logger->logException($e);
$this->logger->error('Error during column autocompletion', [ 'exception' => $e ]);
return [];
}
}