summaryrefslogtreecommitdiffstats
path: root/make/config/clImplCustomCode.java
diff options
context:
space:
mode:
Diffstat (limited to 'make/config/clImplCustomCode.java')
-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;
} } );