diff options
author | Melanie | 2014-04-24 01:44:11 +0100 |
---|---|---|
committer | Melanie | 2014-04-24 01:44:11 +0100 |
commit | 5dc0298f8336b93d565f8ffb17367b02ebfd706f (patch) | |
tree | ec9fcd20dca7115e3c60cb4c2ed0fdadca2441ba /OpenSim | |
parent | minor: Remove unused System.Linq reference and use ParcelFlags.None instead o... (diff) | |
download | opensim-SC-5dc0298f8336b93d565f8ffb17367b02ebfd706f.zip opensim-SC-5dc0298f8336b93d565f8ffb17367b02ebfd706f.tar.gz opensim-SC-5dc0298f8336b93d565f8ffb17367b02ebfd706f.tar.bz2 opensim-SC-5dc0298f8336b93d565f8ffb17367b02ebfd706f.tar.xz |
Apply logging flag to a spammy message that may have been overlooked.
No one needs to see every thread launch.....
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Framework/Util.cs | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
2193 | threadInfo.StackTrace = full; | 2193 | threadInfo.StackTrace = full; |
2194 | threadInfo.LogThread = ShouldLogThread(partial); | 2194 | threadInfo.LogThread = ShouldLogThread(partial); |
2195 | 2195 | ||
2196 | if (threadInfo.LogThread) | 2196 | if (loggingEnabled && threadInfo.LogThread) |
2197 | { | 2197 | { |
2198 | m_log.DebugFormat("Queue threadfunc {0} (Queued {1}, Running {2}) {3}{4}", | 2198 | m_log.DebugFormat("Queue threadfunc {0} (Queued {1}, Running {2}) {3}{4}", |
2199 | threadFuncNum, numQueued, numRunningThreadFuncs, | 2199 | threadFuncNum, numQueued, numRunningThreadFuncs, |