diff --git a/app/Support/FireflyConfig.php b/app/Support/FireflyConfig.php index d4e9619f2c..b8a96a0529 100644 --- a/app/Support/FireflyConfig.php +++ b/app/Support/FireflyConfig.php @@ -84,6 +84,7 @@ class FireflyConfig try { $config = Configuration::where('name', $name)->first(['id', 'name', 'data']); } catch (QueryException|Exception $e) { + Log::error(sprintf('Query exception while polling for config var: %s', $e->getMessage())); return null; }