From 7a2d4c9bd24d7f869380f70fa553af933ed039c9 Mon Sep 17 00:00:00 2001 From: James Cole Date: Tue, 8 Aug 2023 14:11:25 +0200 Subject: [PATCH] Log as error, not debug --- app/Support/Http/Controllers/RuleManagement.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Support/Http/Controllers/RuleManagement.php b/app/Support/Http/Controllers/RuleManagement.php index fed876ed27..f5f67e7ca2 100644 --- a/app/Support/Http/Controllers/RuleManagement.php +++ b/app/Support/Http/Controllers/RuleManagement.php @@ -60,7 +60,7 @@ trait RuleManagement ] )->render(); } catch (Throwable $e) { - Log::debug(sprintf('Throwable was thrown in getPreviousActions(): %s', $e->getMessage())); + Log::error(sprintf('Throwable was thrown in getPreviousActions(): %s', $e->getMessage())); Log::error($e->getTraceAsString()); throw new FireflyException('Could not render', 0, $e); }