Skip to content
This repository has been archived by the owner on Jun 23, 2023. It is now read-only.

Commit

Permalink
Downgraded a warning log line to debug.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bradley Clayton committed Jun 14, 2018
1 parent 39ff974 commit f1569a6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/com/squarepolka/readyci/tasks/Task.java
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ protected void resetInputStream(InputStream inputStream) {
try {
inputStream.reset();
} catch(IOException e) {
LOGGER.warn(String.format("Ignoring an exception while attempting to reset an input stream %s", e.toString()));
// An exception is expected when really long input streams are reset.
LOGGER.debug(String.format("Ignoring an exception while attempting to reset an input stream %s", e.toString()));
}
}

Expand Down

0 comments on commit f1569a6

Please sign in to comment.