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; } }