From 3fad577f2b535e4c98d6460315741ff2aa0f7154 Mon Sep 17 00:00:00 2001 From: Inusaito Sayori Date: Thu, 10 Oct 2013 04:22:48 -0400 Subject: [PATCH] Fix spammy Texture WARNS to be DEBUGS as they should, also spellind fix --- indra/newview/lltexturefetch.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/indra/newview/lltexturefetch.cpp b/indra/newview/lltexturefetch.cpp index 49798d84e..f291de520 100644 --- a/indra/newview/lltexturefetch.cpp +++ b/indra/newview/lltexturefetch.cpp @@ -1243,7 +1243,7 @@ bool LLTextureFetchWorker::doWork(S32 param) } else if (mSentRequest == UNSENT && mCanUseNET) { - LL_WARNS("Texture") << mID << " moving to UDP fetch. mSentRequest=" << mSentRequest << " mCanUseNET = " << mCanUseNET << llendl; + LL_DEBUGS("Texture") << mID << " moving to UDP fetch. mSentRequest=" << mSentRequest << " mCanUseNET = " << mCanUseNET << llendl; setState(SEND_UDP_REQ); setPriority(LLWorkerThread::PRIORITY_HIGH | mWorkPriority); if(mWriteToCacheState != NOT_WRITE) @@ -1311,7 +1311,7 @@ bool LLTextureFetchWorker::doWork(S32 param) return true ; //abort } - LL_WARNS("Texture") << mID << " sendind to UDP fetch. mSentRequest=" << mSentRequest << " mCanUseNET = " << mCanUseNET << llendl; + LL_DEBUGS("Texture") << mID << " sending to UDP fetch. mSentRequest=" << mSentRequest << " mCanUseNET = " << mCanUseNET << llendl; mRequestedSize = mDesiredSize; mRequestedDiscard = mDesiredDiscard;