Skip to content

Commit

Permalink
This behavior is expected. We used to log this at the warn level. We …
Browse files Browse the repository at this point in the history
…had bumped it down to log. This commit bumps it further to trace. This closes #120.
  • Loading branch information
tballison committed Mar 28, 2023
1 parent 4d1d0b8 commit f1ab3cb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,10 @@ public Optional<AsyncStatus> checkAsyncStatus() {
}
return Optional.of(asyncStatus);
} catch (IOException e) {
//this is debug because we expect this to happen
//under regular cirumstances -- forked process hasn't written
//this is trace because we expect this to happen
//under regular circumstances -- forked process hasn't written
//the file yet or if there's a race condition mid-write, etc.
LOGGER.debug("couldn't read status file", e);
LOGGER.trace("couldn't read status file", e);
return Optional.empty();
}
}
Expand Down

0 comments on commit f1ab3cb

Please sign in to comment.