diff options
author | Justin Clark-Casey (justincc) | 2013-06-18 23:10:50 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-06-18 23:10:50 +0100 |
commit | dda44e31e3f649875a7fc7438c4a6880c56dbb31 (patch) | |
tree | a0988b25222ab3c47e0eaf9b89f67f8d0ba45899 /OpenSim/Framework | |
parent | Make number of inbound http requests handled available as a httpserver.<port>... (diff) | |
download | opensim-SC_OLD-dda44e31e3f649875a7fc7438c4a6880c56dbb31.zip opensim-SC_OLD-dda44e31e3f649875a7fc7438c4a6880c56dbb31.tar.gz opensim-SC_OLD-dda44e31e3f649875a7fc7438c4a6880c56dbb31.tar.bz2 opensim-SC_OLD-dda44e31e3f649875a7fc7438c4a6880c56dbb31.tar.xz |
minor: tidy up spacing if display a unit for additional stat information
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Monitoring/Stats/Stat.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Monitoring/Stats/Stat.cs b/OpenSim/Framework/Monitoring/Stats/Stat.cs index ca71911..eb5599f 100644 --- a/OpenSim/Framework/Monitoring/Stats/Stat.cs +++ b/OpenSim/Framework/Monitoring/Stats/Stat.cs | |||
@@ -258,7 +258,7 @@ namespace OpenSim.Framework.Monitoring | |||
258 | 258 | ||
259 | int divisor = m_samples.Count <= 1 ? 1 : m_samples.Count - 1; | 259 | int divisor = m_samples.Count <= 1 ? 1 : m_samples.Count - 1; |
260 | 260 | ||
261 | sb.AppendFormat(", {0:0.##}{1}/s", totalChange / divisor / (Watchdog.WATCHDOG_INTERVAL_MS / 1000), UnitName); | 261 | sb.AppendFormat(", {0:0.##} {1}/s", totalChange / divisor / (Watchdog.WATCHDOG_INTERVAL_MS / 1000), UnitName); |
262 | } | 262 | } |
263 | } | 263 | } |
264 | } | 264 | } |