From 762033580d0b9bfb080c51b49e725a3c95d0e4b0 Mon Sep 17 00:00:00 2001 From: Roxanne Skelly Date: Mon, 12 Nov 2018 13:48:08 -0800 Subject: [PATCH] And remove another url log item. --- libraries/networking/src/ResourceCache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/networking/src/ResourceCache.cpp b/libraries/networking/src/ResourceCache.cpp index 3c29fcd441..0d5e987cca 100644 --- a/libraries/networking/src/ResourceCache.cpp +++ b/libraries/networking/src/ResourceCache.cpp @@ -764,7 +764,7 @@ bool Resource::handleFailedRequest(ResourceRequest::Result result) { bool willRetry = false; switch (result) { case ResourceRequest::Result::Timeout: { - qCDebug(networking) << "Timed out loading" << _url.fileName() << "received" << _bytesReceived << "total" << _bytesTotal; + qCDebug(networking) << "Timed out loading: received " << _bytesReceived << " total " << _bytesTotal; // Fall through to other cases } // FALLTHRU