Skip to content

Commit

Permalink
Now capturing the call stack if there's an IOException reading the Kf…
Browse files Browse the repository at this point in the history
…fFile
  • Loading branch information
drivenflywheel committed Sep 18, 2023
1 parent 0f11c9e commit 3bce395
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/emissary/kff/KffFile.java
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,9 @@ private boolean binaryFileSearch(@Nonnull byte[] hash, long crc) {
return true;
}
}
} catch (IOException e) {
logger.warn("Exception reading KffFile: {}", e.getMessage());
return false;
}
catch (IOException e) {
logger.warn("Exception reading KffFile", e);
}

// not found
Expand Down

0 comments on commit 3bce395

Please sign in to comment.