diff options
author | Jonathan Yap <none@none> | 2013-10-29 16:21:17 -0400 |
---|---|---|
committer | Jonathan Yap <none@none> | 2013-10-29 16:21:17 -0400 |
commit | c5df71b1c41148f07e19fd3d4f7833305bcec9de (patch) | |
tree | a249a433e49be052f34d9eaeb6b77d1a76d666d1 | |
parent | 07c011bc9c3ea2fc8eec6474c7907c9fc44bbef3 (diff) |
STORM-1975 Convert old-style debugging lines to new-style
-rwxr-xr-x | indra/newview/llfloaterimsession.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/newview/llfloaterimsession.cpp b/indra/newview/llfloaterimsession.cpp index 551acdb259..05754bc126 100755 --- a/indra/newview/llfloaterimsession.cpp +++ b/indra/newview/llfloaterimsession.cpp @@ -106,7 +106,7 @@ void LLFloaterIMSession::refresh() // Send an additional Start Typing packet every ME_TYPING_TIMEOUT seconds if (mMeTypingTimer.getElapsedTimeF32() > ME_TYPING_TIMEOUT && false == mShouldSendTypingState) { -llwarns << "DBG Send additional Start Typing packet" << llendl; + LL_DEBUGS("TypingMsgs") << "Send additional Start Typing packet" << LL_ENDL; LLIMModel::instance().sendTypingState(mSessionID, mOtherParticipantUUID, TRUE); mMeTypingTimer.reset(); } @@ -115,14 +115,14 @@ llwarns << "DBG Send additional Start Typing packet" << llendl; if (mTypingTimeoutTimer.getElapsedTimeF32() > LLAgent::TYPING_TIMEOUT_SECS) { setTyping(false); -llwarns << "DBG Send stop typing due to timeout" << llendl; + LL_DEBUGS("TypingMsgs") << "Send stop typing due to timeout" << LL_ENDL; } } // Clear <name is typing> message if no data received for OTHER_TYPING_TIMEOUT seconds if (mOtherTyping && mOtherTypingTimer.getElapsedTimeF32() > OTHER_TYPING_TIMEOUT) { -llwarns << "DBG Received: is typing cleared due to timeout" << llendl; + LL_DEBUGS("TypingMsgs") << "Received: is typing cleared due to timeout" << LL_ENDL; removeTypingIndicator(mImInfo); mOtherTyping = false; } @@ -1007,7 +1007,7 @@ void LLFloaterIMSession::setTyping(bool typing) void LLFloaterIMSession::processIMTyping(const LLIMInfo* im_info, BOOL typing) { -llwarns << "DBG typing=" << typing << llendl; + LL_DEBUGS("TypingMsgs") << "typing=" << typing << LL_ENDL; if ( typing ) { // other user started typing |