fix(logging): skip unserializable file log message parts

This commit is contained in:
Vincent Koc
2026-04-26 14:53:17 -07:00
parent fc0e6e4650
commit d9e9e61e77

View File

@@ -269,7 +269,7 @@ function stringifyFileLogMessagePart(value: unknown): string | undefined {
try {
return JSON.stringify(value);
} catch {
return String(value);
return undefined;
}
}