counted process threads may not be all active, so remove the 'active' word'

This commit is contained in:
UbitUmarov
2021-09-09 22:35:42 +01:00
parent 288cc5ef46
commit 3c6d5a9b10

View File

@@ -855,7 +855,7 @@ namespace OpenSim.Framework.Servers
sb.Append("\n");
int totalThreads = Process.GetCurrentProcess().Threads.Count;
if (totalThreads > 0)
sb.AppendFormat("Total process threads active: {0}\n\n", totalThreads);
sb.AppendFormat("Total process threads: {0}\n\n", totalThreads);
return sb.ToString();
}