aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorMelanie2014-04-24 01:44:11 +0100
committerMelanie2014-04-24 01:44:11 +0100
commit5dc0298f8336b93d565f8ffb17367b02ebfd706f (patch)
treeec9fcd20dca7115e3c60cb4c2ed0fdadca2441ba /OpenSim/Framework
parentminor: Remove unused System.Linq reference and use ParcelFlags.None instead o... (diff)
downloadopensim-SC_OLD-5dc0298f8336b93d565f8ffb17367b02ebfd706f.zip
opensim-SC_OLD-5dc0298f8336b93d565f8ffb17367b02ebfd706f.tar.gz
opensim-SC_OLD-5dc0298f8336b93d565f8ffb17367b02ebfd706f.tar.bz2
opensim-SC_OLD-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/Framework')
-rw-r--r--OpenSim/Framework/Util.cs2
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,