diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-06-16 18:09:35 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-06-16 18:37:48 +0300 |
commit | 35b6513384dc44fdd3e38fca3c48dc0cfa8d6f71 (patch) | |
tree | 57679a6e13308a3016ec074f12cb09d276ff7bf8 /indra/newview/llviewermessage.cpp | |
parent | 307534c9781b312608ccce6a9b4e12499a66170a (diff) |
Additional logging for SL-13397
Diffstat (limited to 'indra/newview/llviewermessage.cpp')
-rw-r--r-- | indra/newview/llviewermessage.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index e077626461..e1c44d6be8 100644 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -2220,8 +2220,12 @@ protected: } }; +static LLTrace::BlockTimerStatHandle FTM_PROCESS_IMPROVED_IM("Process IM"); + void process_improved_im(LLMessageSystem *msg, void **user_data) { + LL_RECORD_BLOCK_TIME(FTM_PROCESS_IMPROVED_IM); + LLUUID from_id; BOOL from_group; LLUUID to_id; |