Skip to content

Commit

Permalink
fix: 10904 Log catastrophic failures during ingest (#11415)
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Moran <152873392+thomas-swirlds-labs@users.noreply.github.com>
  • Loading branch information
thomas-swirlds-labs committed Feb 8, 2024
1 parent 71c039e commit 7801c39
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -140,7 +140,7 @@ public void invoke(
callsHandledSpeedometer.cycle();
} catch (final Exception e) {
// Track the number of times we failed to handle a call
logger.error("Failed to handle call! Unexpected exception", e);
logger.error("Possibly CATASTROPHIC failure while handling a call and running the ingest workflow", e);
callsFailedCounter.increment();
responseObserver.onError(e);
}
Expand Down

0 comments on commit 7801c39

Please sign in to comment.