From 7626f49ddc964b4a1d69609f87fd4280f33b35ee Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Thu, 13 Oct 2016 15:43:28 -0700 Subject: [PATCH] Replace qDebug with qCDebug in ScriptCache --- libraries/script-engine/src/ScriptCache.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/script-engine/src/ScriptCache.cpp b/libraries/script-engine/src/ScriptCache.cpp index a2a6a9ecf1..96e3d7e914 100644 --- a/libraries/script-engine/src/ScriptCache.cpp +++ b/libraries/script-engine/src/ScriptCache.cpp @@ -38,10 +38,10 @@ void ScriptCache::clearCache() { void ScriptCache::clearATPScriptsFromCache() { Lock lock(_containerLock); - qDebug(scriptengine) << "Clearing ATP scripts from ScriptCache"; + qCDebug(scriptengine) << "Clearing ATP scripts from ScriptCache"; for (auto it = _scriptCache.begin(); it != _scriptCache.end();) { if (it.key().scheme() == "atp") { - qDebug(scriptengine) << "Removing: " << it.key(); + qCDebug(scriptengine) << "Removing: " << it.key(); it = _scriptCache.erase(it); } else { ++it;