minor: Fix wrong column length in image queues report
parent
0c39c9e84d
commit
b5971db76c
|
@ -289,7 +289,7 @@ namespace OpenSim.Region.CoreModules.UDP.Linden
|
||||||
if (images.Length > 0)
|
if (images.Length > 0)
|
||||||
{
|
{
|
||||||
report.AppendFormat(
|
report.AppendFormat(
|
||||||
"{0,-36} {1,-8} {2,-9} {3,-9} {4,-9} {5,-7}\n",
|
"{0,-36} {1,-8} {2,-10} {3,-9} {4,-9} {5,-7}\n",
|
||||||
"Texture ID",
|
"Texture ID",
|
||||||
"Last Seq",
|
"Last Seq",
|
||||||
"Priority",
|
"Priority",
|
||||||
|
@ -299,7 +299,7 @@ namespace OpenSim.Region.CoreModules.UDP.Linden
|
||||||
|
|
||||||
foreach (J2KImage image in images)
|
foreach (J2KImage image in images)
|
||||||
report.AppendFormat(
|
report.AppendFormat(
|
||||||
"{0,36} {1,8} {2,9} {3,10} {4,9} {5,7}\n",
|
"{0,36} {1,8} {2,10} {3,10} {4,9} {5,7}\n",
|
||||||
image.TextureID, image.LastSequence, image.Priority, image.StartPacket, image.HasAsset, image.IsDecoded);
|
image.TextureID, image.LastSequence, image.Priority, image.StartPacket, image.HasAsset, image.IsDecoded);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue