mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 16:55:07 +02:00
Replace qDebug with qCDebug in ScriptCache
This commit is contained in:
parent
decb94b719
commit
7626f49ddc
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue