diff options
| author | andreykproductengine <andreykproductengine@lindenlab.com> | 2019-04-16 22:15:32 +0300 | 
|---|---|---|
| committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2019-04-16 22:15:32 +0300 | 
| commit | 30b36a7215ac6297a621eab146adb62043419f84 (patch) | |
| tree | d3f40dce90c43a57c3d1f14049aeaddd412ed2fa | |
| parent | 6ab5182d92bd4d7897933d3952b9be23794e2cb5 (diff) | |
SL-10344 Named logging
| -rw-r--r-- | indra/newview/llsurfacepatch.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/llvlcomposition.cpp | 8 | 
2 files changed, 5 insertions, 5 deletions
| diff --git a/indra/newview/llsurfacepatch.cpp b/indra/newview/llsurfacepatch.cpp index d28a7cc048..f6cf714db4 100644 --- a/indra/newview/llsurfacepatch.cpp +++ b/indra/newview/llsurfacepatch.cpp @@ -99,7 +99,7 @@ void LLSurfacePatch::dirty()  	}  	else  	{ -		LL_WARNS() << "No viewer object for this surface patch!" << LL_ENDL; +		LL_WARNS("Terrain") << "No viewer object for this surface patch!" << LL_ENDL;  	}  	mDirtyZStats = TRUE; diff --git a/indra/newview/llvlcomposition.cpp b/indra/newview/llvlcomposition.cpp index 58f8acb0d1..c63c5f6b23 100644 --- a/indra/newview/llvlcomposition.cpp +++ b/indra/newview/llvlcomposition.cpp @@ -290,7 +290,7 @@ BOOL LLVLComposition::generateTexture(const F32 x, const F32 y,  				{  					mDetailTextures[i]->destroyRawImage() ;  				} -				LL_DEBUGS() << "cached raw data for terrain detail texture is not ready yet: " << mDetailTextures[i]->getID() << LL_ENDL; +				LL_DEBUGS("Terrain") << "cached raw data for terrain detail texture is not ready yet: " << mDetailTextures[i]->getID() << " Discard: " << ddiscard << LL_ENDL;  				return FALSE;  			} @@ -326,12 +326,12 @@ BOOL LLVLComposition::generateTexture(const F32 x, const F32 y,  	if (x_end > mWidth)  	{ -		LL_WARNS() << "x end > width" << LL_ENDL; +		LL_WARNS("Terrain") << "x end > width" << LL_ENDL;  		x_end = mWidth;  	}  	if (y_end > mWidth)  	{ -		LL_WARNS() << "y end > width" << LL_ENDL; +		LL_WARNS("Terrain") << "y end > width" << LL_ENDL;  		y_end = mWidth;  	} @@ -361,7 +361,7 @@ BOOL LLVLComposition::generateTexture(const F32 x, const F32 y,  	if (tex_comps != st_comps)  	{ -		LL_WARNS() << "Base texture comps != input texture comps" << LL_ENDL; +		LL_WARNS("Terrain") << "Base texture comps != input texture comps" << LL_ENDL;  		return FALSE;  	} | 
