fix: Rrror parser throw (#1225)
* Warn instead of throwing error when parsing for console logs * Added error to warning
This commit is contained in:
@@ -71,7 +71,11 @@ export const ErrorStackParser = {
|
|||||||
} else if (error.stack) {
|
} else if (error.stack) {
|
||||||
return this.parseFFOrSafari(error as { stack: string });
|
return this.parseFFOrSafari(error as { stack: string });
|
||||||
} else {
|
} else {
|
||||||
throw new Error('Cannot parse given Error object');
|
console.warn(
|
||||||
|
'[console-record-plugin]: Failed to parse error object:',
|
||||||
|
error,
|
||||||
|
);
|
||||||
|
return [];
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// Separate line and column numbers from a string of the form: (URI:Line:Column)
|
// Separate line and column numbers from a string of the form: (URI:Line:Column)
|
||||||
|
|||||||
Reference in New Issue
Block a user