aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-01-10 22:02:35 +0000
committerJustin Clark-Casey (justincc)2012-01-10 22:02:35 +0000
commit53fb20880c4cdf72b4f28fd9a458f8f224766a7c (patch)
tree4a3fcde50dc7d444d4194fce7c8c507b790dbe4c
parentrename "show image queue" to "show image queues" in line with other udp info ... (diff)
downloadopensim-SC_OLD-53fb20880c4cdf72b4f28fd9a458f8f224766a7c.zip
opensim-SC_OLD-53fb20880c4cdf72b4f28fd9a458f8f224766a7c.tar.gz
opensim-SC_OLD-53fb20880c4cdf72b4f28fd9a458f8f224766a7c.tar.bz2
opensim-SC_OLD-53fb20880c4cdf72b4f28fd9a458f8f224766a7c.tar.xz
minor: Fix wrong column length in image queues report
-rw-r--r--OpenSim/Region/OptionalModules/Agent/UDP/Linden/LindenUDPInfoModule.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/OptionalModules/Agent/UDP/Linden/LindenUDPInfoModule.cs b/OpenSim/Region/OptionalModules/Agent/UDP/Linden/LindenUDPInfoModule.cs
index 58b9b9f..db70e56 100644
--- a/OpenSim/Region/OptionalModules/Agent/UDP/Linden/LindenUDPInfoModule.cs
+++ b/OpenSim/Region/OptionalModules/Agent/UDP/Linden/LindenUDPInfoModule.cs
@@ -289,7 +289,7 @@ namespace OpenSim.Region.CoreModules.UDP.Linden
289 if (images.Length > 0) 289 if (images.Length > 0)
290 { 290 {
291 report.AppendFormat( 291 report.AppendFormat(
292 "{0,-36} {1,-8} {2,-9} {3,-9} {4,-9} {5,-7}\n", 292 "{0,-36} {1,-8} {2,-10} {3,-9} {4,-9} {5,-7}\n",
293 "Texture ID", 293 "Texture ID",
294 "Last Seq", 294 "Last Seq",
295 "Priority", 295 "Priority",
@@ -299,7 +299,7 @@ namespace OpenSim.Region.CoreModules.UDP.Linden
299 299
300 foreach (J2KImage image in images) 300 foreach (J2KImage image in images)
301 report.AppendFormat( 301 report.AppendFormat(
302 "{0,36} {1,8} {2,9} {3,10} {4,9} {5,7}\n", 302 "{0,36} {1,8} {2,10} {3,10} {4,9} {5,7}\n",
303 image.TextureID, image.LastSequence, image.Priority, image.StartPacket, image.HasAsset, image.IsDecoded); 303 image.TextureID, image.LastSequence, image.Priority, image.StartPacket, image.HasAsset, image.IsDecoded);
304 } 304 }
305 } 305 }