From 0ec1dc6c85215bdf95d2916cb2ba66df3b62c1ba Mon Sep 17 00:00:00 2001 From: David Rowe Date: Thu, 15 Dec 2016 10:01:19 +1300 Subject: [PATCH] Log requested ATP mapping of model upload --- interface/src/Application.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index c41a10c6fc..a0fc8e31db 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -5603,7 +5603,7 @@ void Application::addAssetToWorldFromURL(QString url) { return; } - addAssetToWorldInfo(filename, "Downloading asset file " + filename); + addAssetToWorldInfo(filename, "Downloading asset file " + filename + "."); auto request = ResourceManager::createResourceRequest(nullptr, QUrl(url)); connect(request, &ResourceRequest::finished, this, &Application::addAssetToWorldFromURLRequestFinished); @@ -5715,6 +5715,7 @@ void Application::addAssetToWorldWithNewMapping(QString path, QString mapping, i } void Application::addAssetToWorldUpload(QString path, QString mapping) { + qInfo(interfaceapp) << "Uploading" << path << "to Asset Server as" << mapping; auto upload = DependencyManager::get()->createUpload(path); QObject::connect(upload, &AssetUpload::finished, this, [=](AssetUpload* upload, const QString& hash) mutable { if (upload->getError() != AssetUpload::NoError) {