aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorMelanie2011-10-28 23:10:22 +0200
committerMelanie2011-10-28 23:10:22 +0200
commit9b6ce41b0e52a91d1f84b158ae5996957df636ba (patch)
tree50bc37db0006c189ca2d1bf8109f760d977797b8 /OpenSim/Region
parentMerge branch 'bigmerge' of ssh://3dhosting.de/var/git/careminster into bigmerge (diff)
downloadopensim-SC_OLD-9b6ce41b0e52a91d1f84b158ae5996957df636ba.zip
opensim-SC_OLD-9b6ce41b0e52a91d1f84b158ae5996957df636ba.tar.gz
opensim-SC_OLD-9b6ce41b0e52a91d1f84b158ae5996957df636ba.tar.bz2
opensim-SC_OLD-9b6ce41b0e52a91d1f84b158ae5996957df636ba.tar.xz
Reduce severity and remove duplication if a common log message regarding
baked textures
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs b/OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs
index 236a47c..eff6911 100644
--- a/OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs
+++ b/OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs
@@ -325,8 +325,6 @@ namespace OpenSim.Region.CoreModules.Avatar.AvatarFactory
325 if (checkonly) 325 if (checkonly)
326 return false; 326 return false;
327 327
328 m_log.InfoFormat("[AVFACTORY]: missing baked texture {0}, requesting rebake", face.TextureID);
329
330 sp.ControllingClient.SendRebakeAvatarTextures(face.TextureID); 328 sp.ControllingClient.SendRebakeAvatarTextures(face.TextureID);
331 } 329 }
332 } 330 }
@@ -348,7 +346,7 @@ namespace OpenSim.Region.CoreModules.Avatar.AvatarFactory
348 { 346 {
349 if (m_scene.AssetService.Get(textureID.ToString()) == null) 347 if (m_scene.AssetService.Get(textureID.ToString()) == null)
350 { 348 {
351 m_log.WarnFormat("[AVFACTORY]: Missing baked texture {0} ({1}) for avatar {2}", 349 m_log.InfoFormat("[AVFACTORY]: Missing baked texture {0} ({1}) for avatar {2}",
352 textureID, idx, sp.Name); 350 textureID, idx, sp.Name);
353 return false; 351 return false;
354 } 352 }