summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-06-25 12:48:25 +0200
committerSven Gothel <[email protected]>2014-06-25 12:48:25 +0200
commita0e0c8a39d0ef41ff6b64d9b40d058f21b786e81 (patch)
tree63149add945940a12cdde617c9e3d3ad922b1204
parent49d7ae5356c279d519fc6744129c92a166e4f504 (diff)
Add System.err log if CL/JNI library could not be loaded
-rw-r--r--make/config/clImplCustomCode.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/make/config/clImplCustomCode.java b/make/config/clImplCustomCode.java
index fc7d59ed..e4fd2dcf 100644
--- a/make/config/clImplCustomCode.java
+++ b/make/config/clImplCustomCode.java
@@ -14,14 +14,14 @@
return null;
}
if(!bundle.isLibComplete()) {
- // couldn't load native CL/JNI glue library
- // TODO: log this?
+ System.err.println("Couln't load native CL/JNI glue library");
return null;
}
addressTable.reset(bundle);
/** Not required nor forced
if( !initializeImpl() ) {
- throw new RuntimeException("Initialization failure");
+ System.err.println("Native initialization failure of CL/JNI glue library");
+ return null;
} */
return bundle;
} } );