presentErrorToDevelopers

This commit is contained in:
Enrico Ros
2024-09-23 14:08:56 -07:00
parent b0f2ad6742
commit 3e05f751e3
+1 -1
View File
@@ -4,7 +4,7 @@
*/
export function presentErrorToHumans(error: any, mdBold: boolean = false, devWarnError: boolean = false): string {
if (devWarnError)
console.error('presentErrorToHumans', { error });
console.error('presentErrorToDevelopers', { error });
// Handle Error objects
if (error instanceof Error) {