NativeLibraryLoader: Don't gobble the exception message when loading via System.loadLibrary()
This commit is contained in:
parent
8e76652110
commit
2cc601edc3
@ -490,11 +490,13 @@ public final class NativeLibraryLoader {
|
|||||||
if (isRequired) {
|
if (isRequired) {
|
||||||
throw new UnsatisfiedLinkError(
|
throw new UnsatisfiedLinkError(
|
||||||
"The required native library '" + name + "'"
|
"The required native library '" + name + "'"
|
||||||
+ " was not found in the classpath via '" + pathInJar + "'");
|
+ " was not found in the classpath via '" + pathInJar
|
||||||
|
+ "'. Error message: " + e.getMessage());
|
||||||
} else {
|
} else {
|
||||||
logger.log(Level.FINE, "The optional native library ''{0}''" +
|
logger.log(Level.FINE, "The optional native library ''{0}''" +
|
||||||
" was not found in the classpath via ''{1}''",
|
" was not found in the classpath via ''{1}''" +
|
||||||
new Object[]{name, pathInJar});
|
". Error message: {2}",
|
||||||
|
new Object[]{name, pathInJar, e.getMessage()});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user