summaryrefslogtreecommitdiffstats
path: root/src/java/com
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-12-17 00:26:44 +0100
committerSven Gothel <[email protected]>2010-12-17 00:26:44 +0100
commitd96c2a52b8824a0330d9c388c7f60bbf9a62e4f1 (patch)
tree4ed08f740673a5be0051e08fa4e99ddd8a617642 /src/java/com
parentfbdedff789077b5ffa07811590f771b6f9a4f3a7 (diff)
debug: mention thread name
Diffstat (limited to 'src/java/com')
-rwxr-xr-xsrc/java/com/jogamp/common/os/DynamicLibraryBundle.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/java/com/jogamp/common/os/DynamicLibraryBundle.java b/src/java/com/jogamp/common/os/DynamicLibraryBundle.java
index 823b128..906afcf 100755
--- a/src/java/com/jogamp/common/os/DynamicLibraryBundle.java
+++ b/src/java/com/jogamp/common/os/DynamicLibraryBundle.java
@@ -74,7 +74,8 @@ public class DynamicLibraryBundle implements DynamicLookupHelper {
}
this.info = info;
if(DEBUG) {
- System.err.println("DynamicLibraryBundle.init start with: "+info.getClass().getName());
+ System.err.println(Thread.currentThread().getName()+" - DynamicLibraryBundle.init start with: "+info.getClass().getName());
+ Thread.dumpStack();
}
nativeLibraries = new ArrayList();
toolLibNames = info.getToolLibNames();