summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIma Mechanique <ima.mechanique@secondlife.com>2013-11-07 18:31:05 +0000
committerIma Mechanique <ima.mechanique@secondlife.com>2013-11-07 18:31:05 +0000
commitc8b8c29371a0eb4d53537030d0b007afcc500b3d (patch)
treebadfc7eb2691cfa597c79be608c529ef84b5768a
parent0ce27cfdebfd7722bb51c229abf26a5ee1c11d43 (diff)
Fixing LL_WARNS without labels and removing some crufty comments missed before
-rw-r--r--indra/newview/llsyntaxid.cpp12
1 files changed, 3 insertions, 9 deletions
diff --git a/indra/newview/llsyntaxid.cpp b/indra/newview/llsyntaxid.cpp
index 7d0c7e376a..0249607834 100644
--- a/indra/newview/llsyntaxid.cpp
+++ b/indra/newview/llsyntaxid.cpp
@@ -41,7 +41,7 @@
fetchKeywordsFileResponder::fetchKeywordsFileResponder(std::string filespec)
{
mFileSpec = filespec;
- LL_WARNS("")
+ LL_WARNS("LSLSyntax")
<< "Instantiating with file saving to: '" << filespec << "'"
<< LL_ENDL;
}
@@ -51,7 +51,7 @@ void fetchKeywordsFileResponder::errorWithContent(U32 status,
const std::string& reason,
const LLSD& content)
{
- LL_WARNS("")
+ LL_WARNS("LSLSyntax")
<< "fetchKeywordsFileResponder error [status:"
<< status
<< "]: "
@@ -72,7 +72,7 @@ void fetchKeywordsFileResponder::result(const LLSD& content_ref)
file.write(xml.c_str(), str.str().size());
file.close();
- LL_WARNS("")
+ LL_WARNS("LSLSyntax")
<< "Syntax file received, saving as: '" << mFileSpec << "'"
<< LL_ENDL;
}
@@ -150,10 +150,6 @@ bool LLSyntaxIdLSL::checkSyntaxIdChanged()
mCapabilityURL = region->getCapability(mCapabilityName);
if (mSyntaxIdCurrent != mSyntaxIdNew)
{
- // set the properties for the fetcher to use
- //mFileNameNew = buildFileNameNew(mSyntaxIdNew);
- //mFilePath = LL_PATH_CACHE;
-
LL_WARNS("LSLSyntax")
<< "Region changed to '" << region->getName()
<< "' it has LSLSyntaxId capability, and the new hash is '"
@@ -184,8 +180,6 @@ bool LLSyntaxIdLSL::checkSyntaxIdChanged()
else
{
mSyntaxIdNew = LLUUID();
- //mFileNameNew = mFileNameDefault;
- //mFilePath = LL_PATH_APP_SETTINGS;
LL_WARNS("LSLSyntax")
<< "Region changed to '" << region->getName()