Skip to content

Commit

Permalink
Do not print out exception on not finding java home
Browse files Browse the repository at this point in the history
  • Loading branch information
jjlauer committed Nov 3, 2023
1 parent 7fbd74c commit b410654
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/fizzed/jne/JavaHomes.java
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ static public List<JavaHome> detect() throws Exception {
javaHomes.add(javaHome);
} catch (Exception e) {
// not a jvm
log.trace(" was NOT a java home", e);
log.trace(" was NOT a java home: {}", e.getMessage());
}
}

Expand Down

0 comments on commit b410654

Please sign in to comment.