diff --git a/windows/JackWinProcessSync.h b/windows/JackWinProcessSync.h index aa9586af..e475145e 100644 --- a/windows/JackWinProcessSync.h +++ b/windows/JackWinProcessSync.h @@ -66,17 +66,13 @@ class JackWinProcessSync : public JackSyncInterface bool TimedWait(long usec) { - jack_log("JackWinProcessSync::Wait time out = %ld", usec); DWORD res = WaitForSingleObject(fEvent, usec / 1000); - jack_log("JackWinProcessSync::Wait finished res = %ld", res == WAIT_OBJECT_0); return (res == WAIT_OBJECT_0); } void Wait() { - jack_log("JackWinProcessSync::Wait..."); WaitForSingleObject(fEvent, INFINITE); - jack_log("JackWinProcessSync::Wait finished"); } void SignalAll()