Skip to content

Commit

Permalink
Merge pull request #55 from Intel-HLS/eba_libloader_error_msg
Browse files Browse the repository at this point in the history
Modified error message when unable to load PairHmm library, no gives …
  • Loading branch information
erniebrau authored May 16, 2017
2 parents dceb2f7 + 5b69e25 commit 9542b5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/intel/gkl/NativeLibraryLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public static synchronized boolean load(File tempDir, String libraryName) {
logger.debug(String.format("Extracting %s to %s", systemLibraryName, temp.getAbsolutePath()));
System.load(temp.getAbsolutePath());
} catch (Exception|Error e) {
logger.warn(String.format("Unable to load %s from %s", systemLibraryName, resourcePath));
logger.warn(String.format("Unable to load %s from %s (%s)", systemLibraryName, resourcePath, e.getMessage()));
return false;
}

Expand Down

0 comments on commit 9542b5d

Please sign in to comment.