[WIN32K][CONSRV]
authorGiannis Adamopoulos <gadamopoulos@reactos.org>
Fri, 20 Feb 2015 14:19:30 +0000 (14:19 +0000)
committerGiannis Adamopoulos <gadamopoulos@reactos.org>
Fri, 20 Feb 2015 14:19:30 +0000 (14:19 +0000)
- Silence a few more debug prints

svn path=/trunk/; revision=66371

reactos/win32ss/user/ntuser/winpos.c
reactos/win32ss/user/winsrv/consrv/frontends/gui/conwnd.c
reactos/win32ss/user/winsrv/consrv/frontends/terminal.c

index 980fb4c..1d292eb 100644 (file)
@@ -327,7 +327,7 @@ co_WinPosActivateOtherWindow(PWND Wnd)
    /* If this is popup window, try to activate the owner first. */
    if ((Wnd->style & WS_POPUP) && (WndTo = Wnd->spwndOwner))
    {
-      ERR("WPAOW Popup with Owner\n");
+      TRACE("WPAOW Popup with Owner\n");
       WndTo = UserGetAncestor( WndTo, GA_ROOT );
       if (can_activate_window(WndTo)) goto done;
    }
@@ -2088,10 +2088,10 @@ co_WinPosSetWindowPos(
                 pti->MessageQueue != gpqForeground ) // This fixes the breakage at boot time caused by the above line!
       {
          // Inside SAW? Fixes Api AttachThreadInput tests.
-         ERR("SetWindowPos Set FG Window! hWnd %p\n",WinPos.hwnd);
+         TRACE("SetWindowPos Set FG Window! hWnd %p\n",WinPos.hwnd);
          if (!(Window->state & WNDS_BEINGACTIVATED))
          {
-            ERR("SetWindowPos Set FG Window!\n");
+            TRACE("SetWindowPos Set FG Window!\n");
             // Fixes SW_HIDE issues. Wine win test_SetActiveWindow & test_SetForegroundWindow.
             co_IntSetForegroundWindow(Window);
          }
index 9a4cb4c..9b58bfe 100644 (file)
@@ -762,9 +762,9 @@ OnFocus(PGUI_CONSOLE_DATA GuiData, BOOL SetFocus)
     LeaveCriticalSection(&Console->Lock);
 
     if (SetFocus)
-        DPRINT1("TODO: Create console caret\n");
+        DPRINT("TODO: Create console caret\n");
     else
-        DPRINT1("TODO: Destroy console caret\n");
+        DPRINT("TODO: Destroy console caret\n");
 }
 
 static VOID
index 11f7531..306aa41 100644 (file)
@@ -277,7 +277,7 @@ ConSrvTermInitTerminal(IN OUT PTERMINAL This,
         DPRINT1("InitFrontEnd failed, Status = 0x%08lx\n", Status);
 
     /** HACK HACK!! Be sure FrontEndIFace is correctly updated in the console!! **/
-    DPRINT1("Using FrontEndIFace HACK(2), should be removed after proper implementation!\n");
+    DPRINT("Using FrontEndIFace HACK(2), should be removed after proper implementation!\n");
     Console->FrontEndIFace = *FrontEnd;
 
     return Status;