Log as error, not debug

This commit is contained in:
James Cole 2023-08-08 14:11:25 +02:00
parent 9a62a6c514
commit 7a2d4c9bd2
No known key found for this signature in database
GPG Key ID: B49A324B7EAD6D80

View File

@ -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);
}