From 5dc0298f8336b93d565f8ffb17367b02ebfd706f Mon Sep 17 00:00:00 2001 From: Melanie Date: Thu, 24 Apr 2014 01:44:11 +0100 Subject: Apply logging flag to a spammy message that may have been overlooked. No one needs to see every thread launch..... --- OpenSim/Framework/Util.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs index b133ff3..c8a0c68 100644 --- a/OpenSim/Framework/Util.cs +++ b/OpenSim/Framework/Util.cs @@ -2193,7 +2193,7 @@ namespace OpenSim.Framework threadInfo.StackTrace = full; threadInfo.LogThread = ShouldLogThread(partial); - if (threadInfo.LogThread) + if (loggingEnabled && threadInfo.LogThread) { m_log.DebugFormat("Queue threadfunc {0} (Queued {1}, Running {2}) {3}{4}", threadFuncNum, numQueued, numRunningThreadFuncs, -- cgit v1.1