minor: tidy up spacing if display a unit for additional stat information

This commit is contained in:
Justin Clark-Casey (justincc)
2013-06-18 23:10:50 +01:00
parent 9501a583cb
commit dda44e31e3

View File

@@ -258,7 +258,7 @@ namespace OpenSim.Framework.Monitoring
int divisor = m_samples.Count <= 1 ? 1 : m_samples.Count - 1;
sb.AppendFormat(", {0:0.##}{1}/s", totalChange / divisor / (Watchdog.WATCHDOG_INTERVAL_MS / 1000), UnitName);
sb.AppendFormat(", {0:0.##} {1}/s", totalChange / divisor / (Watchdog.WATCHDOG_INTERVAL_MS / 1000), UnitName);
}
}
}