We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d5e3df commit b211e2fCopy full SHA for b211e2f
src/main/java/com/spotify/reaper/service/RepairRunner.java
@@ -148,9 +148,9 @@ public void run() {
148
repairRunners.remove(repairRunId);
149
break;
150
}
151
- } catch (ReaperException e) {
+ } catch (ReaperException | RuntimeException e) {
152
LOG.error("RepairRun FAILURE");
153
- LOG.error(e.getMessage());
+ LOG.error(e.toString());
154
LOG.error(Arrays.toString(e.getStackTrace()));
155
e.printStackTrace();
156
storage.updateRepairRun(repairRun.with()
0 commit comments