From 1af4e18cb3555259f6c9e080b78b452d43819f77 Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Mon, 27 Oct 2025 10:31:31 -0700 Subject: [PATCH] Help debugging #857 --- src/common/util/errorUtils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/util/errorUtils.ts b/src/common/util/errorUtils.ts index 99e7a2eef..dc9a25e51 100644 --- a/src/common/util/errorUtils.ts +++ b/src/common/util/errorUtils.ts @@ -6,7 +6,7 @@ import { Release } from '~/common/app.release'; */ export function presentErrorToHumans(error: any, mdBold: boolean = false, devWarnError: boolean = false): string { if (devWarnError) - console.error('presentErrorToHumans', { errorType: typeof error, error: error }); + console.error('presentErrorToHumans', { errorType: typeof error, isError: error instanceof Error, error: error }); // Handle Error objects if (error instanceof Error) {