aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r--OpenSim/Region/ClientStack/Linden/Caps/UploadBakedTextureModule.cs6
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs4
2 files changed, 9 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/UploadBakedTextureModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/UploadBakedTextureModule.cs
index 47988dd..19afe97 100644
--- a/OpenSim/Region/ClientStack/Linden/Caps/UploadBakedTextureModule.cs
+++ b/OpenSim/Region/ClientStack/Linden/Caps/UploadBakedTextureModule.cs
@@ -268,6 +268,12 @@ namespace OpenSim.Region.ClientStack.Linden
268 } 268 }
269 } 269 }
270 } 270 }
271
272 for (int iter = 0; iter < maxCacheitemsLoop; iter++)
273 {
274 m_log.Debug("[CacheitemsLeaving] {" + iter + "/" + cacheItems[iter].TextureIndex + "}: c-" + cacheItems[iter].CacheId + ", t-" +
275 cacheItems[iter].TextureID);
276 }
271 } 277 }
272 278
273 public void PostInitialise() 279 public void PostInitialise()
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index 7f25f78..0e8c7ca 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -12041,6 +12041,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
12041 { 12041 {
12042 if (bakedTextureModule != null) 12042 if (bakedTextureModule != null)
12043 { 12043 {
12044 m_log.Debug("[ HandleAgentTextureCached] bakedTextureModule");
12044 try 12045 try
12045 { 12046 {
12046 if (p.Appearance.WearableCacheItemsDirty) 12047 if (p.Appearance.WearableCacheItemsDirty)
@@ -12072,7 +12073,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
12072 } 12073 }
12073 } 12074 }
12074 } 12075 }
12075 else if (p.Appearance.WearableCacheItems != null) 12076
12077 if (p.Appearance.WearableCacheItems != null)
12076 { 12078 {
12077 cacheItems = p.Appearance.WearableCacheItems; 12079 cacheItems = p.Appearance.WearableCacheItems;
12078 } 12080 }