Skip to content

Commit

Permalink
warn->debug for status file
Browse files Browse the repository at this point in the history
  • Loading branch information
tballison committed Dec 1, 2022
1 parent 368c941 commit 9316e8c
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,10 @@ public Optional<AsyncStatus> checkAsyncStatus() {
}
return Optional.of(asyncStatus);
} catch (IOException e) {
LOGGER.warn("couldn't read status file", e);
//this is debug because we expect this to happen
//under regular cirumstances -- 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);
return Optional.empty();
}
}
Expand Down

0 comments on commit 9316e8c

Please sign in to comment.