Make some logs debug-only
This commit is contained in:
parent
4301ffbe1d
commit
c87c1596b9
1 changed files with 3 additions and 3 deletions
|
|
@ -412,14 +412,14 @@ void WebLoadManager::queueFailedUpdate(int id) {
|
||||||
|
|
||||||
void WebLoadManager::queueFinishedUpdate(int id, const QByteArray &data) {
|
void WebLoadManager::queueFinishedUpdate(int id, const QByteArray &data) {
|
||||||
crl::on_main(this, [=] {
|
crl::on_main(this, [=] {
|
||||||
LOG(("FINISHED UPDATE FOR: %1").arg(id));
|
DEBUG_LOG(("FINISHED UPDATE FOR: %1").arg(id));
|
||||||
for (const auto &[loader, loaderId] : _ids) {
|
for (const auto &[loader, loaderId] : _ids) {
|
||||||
if (loaderId == id) {
|
if (loaderId == id) {
|
||||||
LOG(("LOADER ID: %2").arg(quintptr(loader.get())));
|
DEBUG_LOG(("LOADER ID: %2").arg(quintptr(loader.get())));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
LOG(("SENT"));
|
DEBUG_LOG(("SENT"));
|
||||||
sendUpdate(id, QByteArray(data));
|
sendUpdate(id, QByteArray(data));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue