summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterexperienceprofile.cpp
diff options
context:
space:
mode:
authordolphin <dolphin@lindenlab.com>2014-05-07 13:40:34 -0700
committerdolphin <dolphin@lindenlab.com>2014-05-07 13:40:34 -0700
commitd14673988d0d26e5029f8f921bf00cce63e4f767 (patch)
treeaa912f7b684f6580362ae981b823fac2eb36d3c3 /indra/newview/llfloaterexperienceprofile.cpp
parent48fece44737fa8b9614fd864354d9287a216ea33 (diff)
removed deprecated logging macros
Diffstat (limited to 'indra/newview/llfloaterexperienceprofile.cpp')
-rw-r--r--indra/newview/llfloaterexperienceprofile.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/newview/llfloaterexperienceprofile.cpp b/indra/newview/llfloaterexperienceprofile.cpp
index f8b4978a3d..25433f814c 100644
--- a/indra/newview/llfloaterexperienceprofile.cpp
+++ b/indra/newview/llfloaterexperienceprofile.cpp
@@ -140,7 +140,7 @@ public:
virtual void error(U32 status, const std::string& reason)
{
- llwarns << "HandleResponder failed with code: " << status<< ", reason: " << reason << llendl;
+ LL_WARNS() << "HandleResponder failed with code: " << status<< ", reason: " << reason << LL_ENDL;
}
};
@@ -768,7 +768,7 @@ void LLFloaterExperienceProfile::onSaveComplete( const LLSD& content )
if(!content.has("experience_keys"))
{
- llwarns << "LLFloaterExperienceProfile::onSaveComplete called with bad content" << llendl;
+ LL_WARNS() << "LLFloaterExperienceProfile::onSaveComplete called with bad content" << LL_ENDL;
return;
}
@@ -777,13 +777,13 @@ void LLFloaterExperienceProfile::onSaveComplete( const LLSD& content )
LLSD::array_const_iterator it = experiences.beginArray();
if(it == experiences.endArray())
{
- llwarns << "LLFloaterExperienceProfile::onSaveComplete called with empty content" << llendl;
+ LL_WARNS() << "LLFloaterExperienceProfile::onSaveComplete called with empty content" << LL_ENDL;
return;
}
if(!it->has(LLExperienceCache::EXPERIENCE_ID) || ((*it)[LLExperienceCache::EXPERIENCE_ID].asUUID() != id))
{
- llwarns << "LLFloaterExperienceProfile::onSaveComplete called with unexpected experience id" << llendl;
+ LL_WARNS() << "LLFloaterExperienceProfile::onSaveComplete called with unexpected experience id" << LL_ENDL;
return;
}