diff options
Diffstat (limited to 'src/net/java/games/jogl/impl')
-rwxr-xr-x | src/net/java/games/jogl/impl/Debug.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/net/java/games/jogl/impl/Debug.java b/src/net/java/games/jogl/impl/Debug.java index ad0092a6f..0082899ac 100755 --- a/src/net/java/games/jogl/impl/Debug.java +++ b/src/net/java/games/jogl/impl/Debug.java @@ -40,6 +40,7 @@ package net.java.games.jogl.impl; import java.security.*; +import net.java.games.jogl.Version; /** Helper routines for logging and debugging. */ @@ -51,6 +52,9 @@ public class Debug { static { verbose = isPropertyDefined("jogl.verbose"); debugAll = isPropertyDefined("jogl.debug"); + if (verbose) { + System.err.println("JOGL version " + Version.getVersion()); + } } public static boolean getBooleanProperty(final String property) { |