Clean up logging a bit to not log when a command pipe is opened when “lldb object...
authorGreg Clayton <gclayton@apple.com>
Tue, 26 Mar 2013 20:53:56 +0000 (20:53 +0000)
committerGreg Clayton <gclayton@apple.com>
Tue, 26 Mar 2013 20:53:56 +0000 (20:53 +0000)
llvm-svn: 178068

lldb/source/Core/ConnectionFileDescriptor.cpp

index c5114a0..a511ee2 100644 (file)
@@ -130,7 +130,7 @@ ConnectionFileDescriptor::OpenCommandPipe ()
 {
     CloseCommandPipe();
     
-    LogSP log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_CONNECTION |  LIBLLDB_LOG_OBJECT));
+    LogSP log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_CONNECTION));
     // Make the command file descriptor here:
     int filedes[2];
     int result = pipe (filedes);