From 6f6414ef23597a02e1ec12d4e1e704c321d6110e Mon Sep 17 00:00:00 2001 From: falkTX Date: Wed, 7 Jan 2015 04:38:40 +0000 Subject: [PATCH] Remove debug prints --- source/backend/plugin/CarlaPluginBridge.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/source/backend/plugin/CarlaPluginBridge.cpp b/source/backend/plugin/CarlaPluginBridge.cpp index fe1541939..6086fa4e5 100644 --- a/source/backend/plugin/CarlaPluginBridge.cpp +++ b/source/backend/plugin/CarlaPluginBridge.cpp @@ -2452,8 +2452,6 @@ public: #endif sFirstInit = false; - carla_stdout("plugin bridge starting, current time: " P_INT64 "; max wait time: " P_INT64, fLastPongTime, timeoutEnd); - for (; Time::currentTimeMillis() < fLastPongTime + timeoutEnd && fBridgeThread.isThreadRunning();) { pData->engine->callback(ENGINE_CALLBACK_IDLE, 0, 0, 0, 0.0f, nullptr); @@ -2464,7 +2462,6 @@ public: break; carla_msleep(20); - carla_stdout("plugin bridge waiting 20ms, remainig time: " P_INT64, fLastPongTime + timeoutEnd - Time::currentTimeMillis()); } fLastPongTime = -1;