[Lldb-commits] [lldb] r122198 - /lldb/trunk/source/Interpreter/Args.cpp

Greg Clayton gclayton at apple.com
Sun Dec 19 13:36:12 PST 2010


Author: gclayton
Date: Sun Dec 19 15:36:12 2010
New Revision: 122198

URL: http://llvm.org/viewvc/llvm-project?rev=122198&view=rev
Log:
Removed logging code that I accidentally left in after recent changes.

Modified:
    lldb/trunk/source/Interpreter/Args.cpp

Modified: lldb/trunk/source/Interpreter/Args.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/Args.cpp?rev=122198&r1=122197&r2=122198&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/Args.cpp (original)
+++ lldb/trunk/source/Interpreter/Args.cpp Sun Dec 19 15:36:12 2010
@@ -123,8 +123,6 @@
 void
 Args::SetCommandString (const char *command)
 {
-    StreamFile s(stdout);
-    s.Printf("\nCOMMAND: %s\n", command);
     m_args.clear();
     m_argv.clear();
     m_args_quote_char.clear();
@@ -313,7 +311,6 @@
         }
         UpdateArgvFromArgs();
     }
-    Dump (&s);
 }
 
 void





More information about the lldb-commits mailing list