Skip to content

Commit

Permalink
feat: better error message
Browse files Browse the repository at this point in the history
  • Loading branch information
samyuh authored Feb 5, 2025
1 parent 05b4000 commit 8bd9b37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/xerial/snappy/OSInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ private static boolean isMusl() {
return new File("/lib/ld-musl-x86_64.so.1").exists();
}
catch (Exception e) {
System.err.println("Error while checking if ld-musl-x86_64.so.1 exists");
System.err.println("Error while checking if ld-musl-x86_64.so.1 exists: " + e.getMessage());
return false;
}
}
Expand Down

0 comments on commit 8bd9b37

Please sign in to comment.