feat: better error message

This commit is contained in:
Samuel Fernandes 2025-02-05 23:31:21 +00:00 committed by GitHub
parent 05b4000863
commit 8bd9b370c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -236,7 +236,7 @@ public class OSInfo {
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;
}
}