https://git.reactos.org/?p=reactos.git;a=commitdiff;h=34586814ab70bc2e5d5ccfe43a948a5e6f23a45b

commit 34586814ab70bc2e5d5ccfe43a948a5e6f23a45b
Author:     Timo Kreuzer <timo.kreu...@reactos.org>
AuthorDate: Tue Aug 27 10:33:40 2024 +0300
Commit:     Timo Kreuzer <timo.kreu...@reactos.org>
CommitDate: Fri Aug 30 16:06:41 2024 +0300

    [GDI32][NTUSER] Demote noisy debug prints
---
 win32ss/gdi/gdi32/objects/text.c | 2 +-
 win32ss/user/ntuser/painting.c   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/win32ss/gdi/gdi32/objects/text.c b/win32ss/gdi/gdi32/objects/text.c
index 4ba8c9a5d4d..0f5ac46630e 100644
--- a/win32ss/gdi/gdi32/objects/text.c
+++ b/win32ss/gdi/gdi32/objects/text.c
@@ -573,7 +573,7 @@ ExtTextOutW(
             }
             else // Do nothing, old explorer pops this off.
             {
-                DPRINT1("GdiBCExtTextOut nothing\n");
+                DPRINT("GdiBCExtTextOut nothing\n");
                 return TRUE;
             }
         }         // Max 580 wchars, if offset 0
diff --git a/win32ss/user/ntuser/painting.c b/win32ss/user/ntuser/painting.c
index 58be0b75e8f..e813d25185d 100644
--- a/win32ss/user/ntuser/painting.c
+++ b/win32ss/user/ntuser/painting.c
@@ -155,7 +155,7 @@ IntSendSyncPaint(PWND Wnd, ULONG Flags)
          Message = CONTAINING_RECORD(Entry, USER_SENT_MESSAGE, ListEntry);
          do
          {
-            ERR("LOOP it\n");
+            TRACE("LOOP it\n");
             if (Message->Msg.message == WM_SYNCPAINT &&
                 Message->Msg.hwnd == UserHMGetHandle(Wnd))
             {  // Already received so exit out.

Reply via email to