From fce83697087d657c3b76ec35f09150dbbb57d7f3 Mon Sep 17 00:00:00 2001 From: howard-stearns Date: Fri, 11 Mar 2016 14:23:47 -0800 Subject: [PATCH] Remove logging that implies a problem that isn't there. --- libraries/script-engine/src/ScriptCache.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/libraries/script-engine/src/ScriptCache.cpp b/libraries/script-engine/src/ScriptCache.cpp index ae422313aa..3ebd3d53ce 100644 --- a/libraries/script-engine/src/ScriptCache.cpp +++ b/libraries/script-engine/src/ScriptCache.cpp @@ -115,9 +115,6 @@ void ScriptCache::getScriptContents(const QString& scriptOrURL, contentAvailable auto scriptContent = _scriptCache[url]; lock.unlock(); qCDebug(scriptengine) << "Found script in cache:" << url.toString(); - #if 1 // def THREAD_DEBUGGING - qCDebug(scriptengine) << "ScriptCache::getScriptContents() about to call contentAvailable() on thread [" << QThread::currentThread() << "] expected thread [" << thread() << "]"; - #endif contentAvailable(url.toString(), scriptContent, true, true); } else { bool alreadyWaiting = _contentCallbacks.contains(url);