Skip to content

Commit

Permalink
IOException during retry as WARN logging
Browse files Browse the repository at this point in the history
  • Loading branch information
siom79 committed Sep 24, 2023
1 parent a8ee211 commit dc18e31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/jdrivesync/gdrive/RetryOperation.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public static <T> T executeWithRetry(Options options, RetryCallback<T> retryCall
returnValue = retryCallback.execute();
successful = true;
} catch (IOException e) {
LOGGER.log(Level.FINE, "Network operation failed for the " + numberOfAttempts + ". time.", e);
LOGGER.log(Level.WARNING, "Network operation failed for the " + numberOfAttempts + ". time.", e);
}
if (!successful) {
try {
Expand Down

0 comments on commit dc18e31

Please sign in to comment.