fix(logs): log error cause when object, sign in oidc debug messages (#3054)

Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
This commit is contained in:
Eugen Stan
2025-05-09 14:27:06 +03:00
committed by GitHub
parent 347c6d1519
commit 2bdb1c75f6
2 changed files with 7 additions and 0 deletions

View File

@@ -22,6 +22,10 @@ export const formatErrorCause = (cause: unknown, iteration = 0): string => {
return `\ncaused by ${formatErrorTitle(cause)}\n${formatErrorStack(cause.stack)}${formatErrorCause(cause.cause, iteration + 1)}`;
}
if (cause instanceof Object) {
return `\ncaused by ${JSON.stringify(cause)}`;
}
return `\ncaused by ${cause as string}`;
};