Skip to content

Commit ca57920

Browse files
committed
fix: avoid logging same error twice when thrown by user in global handler
fix #9445
1 parent 57bc80a commit ca57920

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/core/util/error.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,11 @@ function globalHandleError (err, vm, info) {
4949
try {
5050
return config.errorHandler.call(null, err, vm, info)
5151
} catch (e) {
52-
logError(e, null, 'config.errorHandler')
52+
// if the user intentionally throws the original error in the handler,
53+
// do not log it twice
54+
if (e !== err) {
55+
logError(e, null, 'config.errorHandler')
56+
}
5357
}
5458
}
5559
logError(err, vm, info)

0 commit comments

Comments
 (0)