diff options
author | Ima Mechanique <ima.mechanique@secondlife.com> | 2013-11-07 18:31:05 +0000 |
---|---|---|
committer | Ima Mechanique <ima.mechanique@secondlife.com> | 2013-11-07 18:31:05 +0000 |
commit | c8b8c29371a0eb4d53537030d0b007afcc500b3d (patch) | |
tree | badfc7eb2691cfa597c79be608c529ef84b5768a | |
parent | 0ce27cfdebfd7722bb51c229abf26a5ee1c11d43 (diff) |
Fixing LL_WARNS without labels and removing some crufty comments missed before
-rw-r--r-- | indra/newview/llsyntaxid.cpp | 12 |
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() |