From aac1265340ae2ee1cad6bbf89369ba0288a6a290 Mon Sep 17 00:00:00 2001
From: Sven Gothel <sgothel@jausoft.com>
Date: Sat, 16 Sep 2023 15:40:48 +0200
Subject: Debug.debugExplicit(): Define and use explicit symbol debug flag; Use
 it for certain debug output to keep most silence for debugAll()

---
 src/newt/classes/com/jogamp/newt/Window.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'src/newt/classes/com/jogamp')

diff --git a/src/newt/classes/com/jogamp/newt/Window.java b/src/newt/classes/com/jogamp/newt/Window.java
index 47c03557e..e43961e98 100644
--- a/src/newt/classes/com/jogamp/newt/Window.java
+++ b/src/newt/classes/com/jogamp/newt/Window.java
@@ -113,8 +113,8 @@ import com.jogamp.nativewindow.util.SurfaceSize;
  * </p>
  */
 public interface Window extends NativeWindow, WindowClosingProtocol, ScalableSurface {
-    public static final boolean DEBUG_MOUSE_EVENT = Debug.debug("Window.MouseEvent");
-    public static final boolean DEBUG_KEY_EVENT = Debug.debug("Window.KeyEvent");
+    public static final boolean DEBUG_MOUSE_EVENT = Debug.debugExplicit("Window.MouseEvent");
+    public static final boolean DEBUG_KEY_EVENT = Debug.debugExplicit("Window.KeyEvent");
     public static final boolean DEBUG_IMPLEMENTATION = Debug.debug("Window");
 
     /** A 1s timeout while waiting for a native action response, ie {@link #setVisible(boolean)}. */
-- 
cgit v1.2.3