Remove extraneous logging

This commit is contained in:
Ryan Huffman 2017-09-19 11:16:59 -07:00
parent 641addf397
commit 5950006111
3 changed files with 0 additions and 4 deletions

View file

@ -194,7 +194,6 @@ NetworkTexturePointer TextureCache::getTexture(const QUrl& url, image::TextureUs
if (type == image::TextureUsage::CUBE_TEXTURE) {
QUrlQuery query { url.query() };
query.addQueryItem("skybox", "");
qDebug() << "Updating cubemap texture query from" << url.query() << "to" << query.toString();
modifiedUrl.setQuery(query.toString());
}
TextureExtra extra = { type, content, maxNumPixels };

View file

@ -617,7 +617,6 @@ MessageID AssetClient::setBakingEnabled(const AssetPathList& paths, bool enabled
_pendingMappingRequests[assetServer][messageID] = callback;
return messageID;
}
}

View file

@ -734,9 +734,7 @@ void Resource::handleReplyFinished() {
qCDebug(networking).noquote() << QString("Request finished for %1%2").arg(_url.toDisplayString(), extraInfo);
auto relativePathURL = _request->getRelativePathUrl();
qDebug() << "Relative path is: " << relativePathURL;
if (!relativePathURL.isEmpty()) {
qDebug() << "setting effective path";
_effectiveBaseURL = relativePathURL;
}