Skip to content

Commit

Permalink
Ryan's Feedback v2
Browse files Browse the repository at this point in the history
  • Loading branch information
nbauernfeind committed Nov 6, 2023
1 parent 749f1a9 commit a6fc1bd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -822,7 +822,7 @@ private synchronized void setState(final ExportNotification.State state) {
errorHandler.onError(state, errorId, toReport, failedDependencyLogIdentity);
} catch (final Throwable err) {
// this is a serious error; crash the jvm to ensure that we don't miss it
log.error().append("Unexpected error while reporting failure: ").append(err).endl();
log.error().append("Unexpected error while reporting ExportObject failure: ").append(err).endl();
ProcessEnvironment.getGlobalFatalErrorReporter().reportAsync(
"Unexpected error while reporting ExportObject failure", err);
}
Expand All @@ -834,7 +834,7 @@ private synchronized void setState(final ExportNotification.State state) {
successHandler.accept(result);
} catch (final Throwable err) {
// this is a serious error; crash the jvm to ensure that we don't miss it
log.error().append("Unexpected error while reporting success: ").append(err).endl();
log.error().append("Unexpected error while reporting ExportObject success: ").append(err).endl();
ProcessEnvironment.getGlobalFatalErrorReporter().reportAsync(
"Unexpected error while reporting ExportObject success", err);
}
Expand Down

0 comments on commit a6fc1bd

Please sign in to comment.