Author: cmihail
Date: Fri Sep  2 19:56:58 2011
New Revision: 53534

URL: http://svn.reactos.org/svn/reactos?rev=53534&view=rev
Log:
[shell32.dll]
- replace DbgPrints with TRACE.

Modified:
    branches/shell32_new-bringup/dll/win32/shell32/shlexec.cpp

Modified: branches/shell32_new-bringup/dll/win32/shell32/shlexec.cpp
URL: 
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/shell32/shlexec.cpp?rev=53534&r1=53533&r2=53534&view=diff
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/shlexec.cpp [iso-8859-1] 
(original)
+++ branches/shell32_new-bringup/dll/win32/shell32/shlexec.cpp [iso-8859-1] Fri 
Sep  2 19:56:58 2011
@@ -189,11 +189,8 @@
     DWORD   used = 0;
     bool    tildeEffect = false;
 
-    TRACE("%p, %d, %s, %s, %p, %p\n", out, len, debugstr_w(fmt),
+    TRACE("Before parsing: %p, %d, %s, %s, %p, %p\n", out, len, 
debugstr_w(fmt),
           debugstr_w(lpFile), pidl, args);
-
-    DbgPrint("[shell32, SHELL_ArgifyW] Processing %ws\n", args);
-    DbgPrint("[shell32, SHELL_ArgifyW] fmt = %ws\n", fmt);
 
     while (*fmt)
     {
@@ -391,7 +388,8 @@
     if (out_len)
         *out_len = used;
 
-    DbgPrint("[shell32, SHELL_ArgifyW] Done result = %ws\n", out);
+    TRACE("After parsing: %p, %d, %s, %s, %p, %p\n", out, len, debugstr_w(fmt),
+          debugstr_w(lpFile), pidl, args);
 
     return found_p1;
 }


Reply via email to