Fix typo in NativeLibraryLoader debug log message (#8947)

Motivation:

We had a typo in NativeLibraryLoader debug log message which could misslead the user.

Modifications:

Fix typo to correctly state java.library.path

Result:

Correct and less confusing log message
This commit is contained in:
Norman Maurer 2019-03-16 14:27:48 +01:00
parent a44c33136f
commit f1bc4569c1

View File

@ -139,7 +139,7 @@ public final class NativeLibraryLoader {
} catch (Throwable ex) {
suppressed.add(ex);
logger.debug(
"{} cannot be loaded from java.libary.path, "
"{} cannot be loaded from java.library.path, "
+ "now trying export to -Dio.netty.native.workdir: {}", name, WORKDIR, ex);
}