Skip to content
Snippets Groups Projects
Commit 2208e6da authored by Brad Payne (Vir Linden)'s avatar Brad Payne (Vir Linden)
Browse files

asset request logging for DEV-47362 investigation.

parent e1517318
No related branches found
No related tags found
No related merge requests found
...@@ -408,6 +408,8 @@ void LLAssetStorage::getAssetData(const LLUUID uuid, LLAssetType::EType type, vo ...@@ -408,6 +408,8 @@ void LLAssetStorage::getAssetData(const LLUUID uuid, LLAssetType::EType type, vo
{ {
lldebugs << "LLAssetStorage::getAssetData() - " << uuid << "," << LLAssetType::lookup(type) << llendl; lldebugs << "LLAssetStorage::getAssetData() - " << uuid << "," << LLAssetType::lookup(type) << llendl;
llinfos << "ASSET_TRACE requesting " << uuid << " type " << LLAssetType::lookup(type) << llendl;
if (mShutDown) if (mShutDown)
{ {
return; // don't get the asset or do any callbacks, we are shutting down return; // don't get the asset or do any callbacks, we are shutting down
...@@ -471,6 +473,8 @@ void LLAssetStorage::getAssetData(const LLUUID uuid, LLAssetType::EType type, vo ...@@ -471,6 +473,8 @@ void LLAssetStorage::getAssetData(const LLUUID uuid, LLAssetType::EType type, vo
// we've already got the file // we've already got the file
// theoretically, partial files w/o a pending request shouldn't happen // theoretically, partial files w/o a pending request shouldn't happen
// unless there's a weird error // unless there's a weird error
llinfos << "ASSET_TRACE asset " << uuid << " found in VFS" << llendl;
if (callback) if (callback)
{ {
callback(mVFS, uuid, type, user_data, LL_ERR_NOERR, LL_EXSTAT_VFS_CACHED); callback(mVFS, uuid, type, user_data, LL_ERR_NOERR, LL_EXSTAT_VFS_CACHED);
...@@ -528,6 +532,8 @@ void LLAssetStorage::downloadCompleteCallback( ...@@ -528,6 +532,8 @@ void LLAssetStorage::downloadCompleteCallback(
LLAssetType::EType file_type, LLAssetType::EType file_type,
void* user_data, LLExtStat ext_status) void* user_data, LLExtStat ext_status)
{ {
llinfos << "ASSET_TRACE asset " << file_id << " downloadCompleteCallback" << llendl;
lldebugs << "LLAssetStorage::downloadCompleteCallback() for " << file_id lldebugs << "LLAssetStorage::downloadCompleteCallback() for " << file_id
<< "," << LLAssetType::lookup(file_type) << llendl; << "," << LLAssetType::lookup(file_type) << llendl;
LLAssetRequest* req = (LLAssetRequest*)user_data; LLAssetRequest* req = (LLAssetRequest*)user_data;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment