Skip to content

Commit

Permalink
Presence check threw exception
Browse files Browse the repository at this point in the history
  • Loading branch information
pkriens committed Mar 4, 2024
1 parent 539ecec commit fb76920
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,8 @@ public boolean isPresent() {
return true;
} catch (java.lang.UnsatisfiedLinkError e) {
log.debug("lib {} gave error {}", id(), e.getMessage());
} catch (Exception e) {
log.debug("not present {}", id());
}
return false;
}
Expand Down

0 comments on commit fb76920

Please sign in to comment.