From 79e0e336c5a605674ad1019d66c5d97986afd958 Mon Sep 17 00:00:00 2001 From: Chris Marsh Date: Tue, 18 Jul 2017 11:13:22 -0700 Subject: [PATCH] quieter --- src/connection_win.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/connection_win.cpp b/src/connection_win.cpp index 2decdc1..007f53a 100644 --- a/src/connection_win.cpp +++ b/src/connection_win.cpp @@ -37,12 +37,10 @@ bool BaseConnection::Open() } if (GetLastError() != ERROR_PIPE_BUSY) { - printf("Could not open pipe. Error: %d\n", GetLastError()); return false; } if (!WaitNamedPipeW(PipeName, 10000)) { - printf("Could not open pipe: 10 second wait timed out.\n"); return false; } }