Drop server level stats to debug instead of info.

This was the original intention with these stats, as I didn't believe they would be useful to ordinary users if everything is working as it should.
Please amend if this is an issue.
Just for now, levels actually have no impact on what is displayed via the "show stats" command.
cpu-performance
Justin Clark-Casey (justincc) 2013-06-17 22:56:39 +01:00
parent 2c9bb0f973
commit 865d46ae1e
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ namespace OpenSim.Framework.Monitoring
string desc = pDesc;
if (desc == null)
desc = pName;
Stat stat = new Stat(pName, pName, desc, pUnit, CategoryServer, pContainer, StatType.Pull, act, StatVerbosity.Info);
Stat stat = new Stat(pName, pName, desc, pUnit, CategoryServer, pContainer, StatType.Pull, act, StatVerbosity.Debug);
StatsManager.RegisterStat(stat);
RegisteredStats.Add(pName, stat);
}