diff options
author | Sven Gothel <[email protected]> | 2010-12-17 00:26:44 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-12-17 00:26:44 +0100 |
commit | d96c2a52b8824a0330d9c388c7f60bbf9a62e4f1 (patch) | |
tree | 4ed08f740673a5be0051e08fa4e99ddd8a617642 /src/java/com | |
parent | fbdedff789077b5ffa07811590f771b6f9a4f3a7 (diff) |
debug: mention thread name
Diffstat (limited to 'src/java/com')
-rwxr-xr-x | src/java/com/jogamp/common/os/DynamicLibraryBundle.java | 3 |
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(); |