From 7e4df6006a238bfaf017961a99dbdefc68f6f201 Mon Sep 17 00:00:00 2001 From: filtered <176114999+webfiltered@users.noreply.github.com> Date: Thu, 17 Apr 2025 15:16:05 +1000 Subject: [PATCH] Log errors in generic error handler (#3482) --- src/composables/useErrorHandling.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/composables/useErrorHandling.ts b/src/composables/useErrorHandling.ts index 7098db14d..ffeaa2998 100644 --- a/src/composables/useErrorHandling.ts +++ b/src/composables/useErrorHandling.ts @@ -5,6 +5,7 @@ export function useErrorHandling() { const toast = useToastStore() const toastErrorHandler = (error: any) => { + console.error(error) toast.add({ severity: 'error', summary: t('g.error'),