diff options
| author | Richard Linden <none@none> | 2013-08-09 17:11:19 -0700 | 
|---|---|---|
| committer | Richard Linden <none@none> | 2013-08-09 17:11:19 -0700 | 
| commit | e340009fc59d59e59b2e8d903a884acb76b178eb (patch) | |
| tree | 6c42d6e0031ef1dbe841fd05cd5d62d5b6b48525 /indra/llplugin | |
| parent | 8d3daa141e9ea14f533559843d77ab5c0f715421 (diff) | |
second phase summer cleaning
replace llinfos, lldebugs, etc with new LL_INFOS(), LL_DEBUGS(), etc.
Diffstat (limited to 'indra/llplugin')
| -rwxr-xr-x | indra/llplugin/llplugincookiestore.cpp | 4 | ||||
| -rwxr-xr-x | indra/llplugin/llpluginmessagepipe.cpp | 2 | ||||
| -rwxr-xr-x | indra/llplugin/llpluginprocessparent.cpp | 6 | 
3 files changed, 6 insertions, 6 deletions
| diff --git a/indra/llplugin/llplugincookiestore.cpp b/indra/llplugin/llplugincookiestore.cpp index 82017ab3fa..e1e16a2bb3 100755 --- a/indra/llplugin/llplugincookiestore.cpp +++ b/indra/llplugin/llplugincookiestore.cpp @@ -395,7 +395,7 @@ void LLPluginCookieStore::writeChangedCookies(std::ostream& s, bool clear_change  {  	if(mHasChangedCookies)  	{ -		lldebugs << "returning changed cookies: " << llendl; +		LL_DEBUGS() << "returning changed cookies: " << LL_ENDL;  		cookie_map_t::iterator iter;  		for(iter = mCookies.begin(); iter != mCookies.end(); )  		{ @@ -407,7 +407,7 @@ void LLPluginCookieStore::writeChangedCookies(std::ostream& s, bool clear_change  			{  				s << iter->second->getCookie() << "\n"; -				lldebugs << "    " << iter->second->getCookie() << llendl; +				LL_DEBUGS() << "    " << iter->second->getCookie() << LL_ENDL;  				// If requested, clear the changed mark  				if(clear_changed) diff --git a/indra/llplugin/llpluginmessagepipe.cpp b/indra/llplugin/llpluginmessagepipe.cpp index 091e93ea4b..7e2bf90ad1 100755 --- a/indra/llplugin/llpluginmessagepipe.cpp +++ b/indra/llplugin/llpluginmessagepipe.cpp @@ -215,7 +215,7 @@ bool LLPluginMessagePipe::pumpOutput()  			else if(APR_STATUS_IS_EOF(status))  			{  				// This is what we normally expect when a plugin exits. -				llinfos << "Got EOF from plugin socket. " << llendl; +				LL_INFOS() << "Got EOF from plugin socket. " << LL_ENDL;  				if(mOwner)  				{ diff --git a/indra/llplugin/llpluginprocessparent.cpp b/indra/llplugin/llpluginprocessparent.cpp index a4da7674d5..ea0d2b81f1 100755 --- a/indra/llplugin/llpluginprocessparent.cpp +++ b/indra/llplugin/llpluginprocessparent.cpp @@ -185,7 +185,7 @@ bool LLPluginProcessParent::accept()  	if(status == APR_SUCCESS)  	{ -//		llinfos << "SUCCESS" << llendl; +//		LL_INFOS() << "SUCCESS" << LL_ENDL;  		// Success.  Create a message pipe on the new socket  		// we MUST create a new pool for the LLSocket, since it will take ownership of it and delete it in its destructor! @@ -199,14 +199,14 @@ bool LLPluginProcessParent::accept()  	}  	else if(APR_STATUS_IS_EAGAIN(status))  	{ -//		llinfos << "EAGAIN" << llendl; +//		LL_INFOS() << "EAGAIN" << LL_ENDL;  		// No incoming connections.  This is not an error.  		status = APR_SUCCESS;  	}  	else  	{ -//		llinfos << "Error:" << llendl; +//		LL_INFOS() << "Error:" << LL_ENDL;  		ll_apr_warn_status(status);  		// Some other error. | 
