Make StatsManager default output a little more readable

user_profiles
Robert Adams 2013-02-24 07:38:24 -08:00
parent 9f213892ea
commit 2aae046b95
1 changed files with 1 additions and 1 deletions

View File

@ -211,7 +211,7 @@ namespace OpenSim.Framework.Monitoring
public virtual string ToConsoleString()
{
StringBuilder sb = new StringBuilder();
sb.AppendFormat("{0}.{1}.{2} : {3}{4}", Category, Container, ShortName, Value, UnitName);
sb.AppendFormat("{0}.{1}.{2} : {3} {4}", Category, Container, ShortName, Value, UnitName);
AppendMeasuresOfInterest(sb);