Skip to content
Snippets Groups Projects
Commit 30b36a72 authored by andreykproductengine's avatar andreykproductengine
Browse files

SL-10344 Named logging

parent 6ab5182d
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment