diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 39bbb34ed3..eb44c50345 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -5552,7 +5552,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); @@ -5664,6 +5664,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) {