Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
2208e6da
Commit
2208e6da
authored
15 years ago
by
Brad Payne (Vir Linden)
Browse files
Options
Downloads
Patches
Plain Diff
asset request logging for DEV-47362 investigation.
parent
e1517318
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/llmessage/llassetstorage.cpp
+6
-0
6 additions, 0 deletions
indra/llmessage/llassetstorage.cpp
with
6 additions
and
0 deletions
indra/llmessage/llassetstorage.cpp
+
6
−
0
View file @
2208e6da
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment