Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
abmodi committed Jul 21, 2022
1 parent 0d4d4d2 commit eeec92d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

package com.google.cloud.hadoop.fs.gcs;

import static com.google.common.base.Preconditions.checkNotNull;
import static com.google.common.base.Preconditions.checkState;
import static java.lang.Math.max;

Expand Down Expand Up @@ -146,7 +145,7 @@ public void readFully(long position, byte[] buffer, int offset, int length) thro
try {
seek(oldPos);
} catch (IOException ie) {
logger.atFiner().log("Ignoring IOE on seek to (%d): (%s)", oldPos, ie.getMessage());
logger.atWarning().log("Ignoring IOE on seek to (%d): (%s)", oldPos, ie.getMessage());
}
}
}
Expand Down

0 comments on commit eeec92d

Please sign in to comment.