diff options
Diffstat (limited to 'src/jogl/classes/javax/media/opengl/GLDrawableFactory.java')
-rw-r--r-- | src/jogl/classes/javax/media/opengl/GLDrawableFactory.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jogl/classes/javax/media/opengl/GLDrawableFactory.java b/src/jogl/classes/javax/media/opengl/GLDrawableFactory.java index 9a921091c..26abc53ba 100644 --- a/src/jogl/classes/javax/media/opengl/GLDrawableFactory.java +++ b/src/jogl/classes/javax/media/opengl/GLDrawableFactory.java @@ -266,7 +266,7 @@ public abstract class GLDrawableFactory { throw new InternalError("no default device"); } if (GLProfile.DEBUG) { - System.err.println("Info: GLDrawableFactory.validateDevice: using default device : "+device); + System.err.println("Info: "+getClass().getSimpleName()+".validateDevice: using default device : "+device); } } @@ -274,7 +274,7 @@ public abstract class GLDrawableFactory { // since even the default device may not be used by this factory. if( !getIsDeviceCompatible(device) ) { if (GLProfile.DEBUG) { - System.err.println("Info: GLDrawableFactory.validateDevice: device not compatible : "+device); + System.err.println("Info: "+getClass().getSimpleName()+".validateDevice: device not compatible : "+device); } return null; } |