aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2014-09-26 01:10:49 +0100
committerJustin Clark-Casey (justincc)2014-09-26 01:10:49 +0100
commit23a0946e3658a4671b330e086c487cc9d1340e2e (patch)
tree38d3fdb73990aecc71c32ea5441e13d89daa2338
parentMake "generate map" console command also trigger upload to maptiles as well a... (diff)
downloadopensim-SC_OLD-23a0946e3658a4671b330e086c487cc9d1340e2e.zip
opensim-SC_OLD-23a0946e3658a4671b330e086c487cc9d1340e2e.tar.gz
opensim-SC_OLD-23a0946e3658a4671b330e086c487cc9d1340e2e.tar.bz2
opensim-SC_OLD-23a0946e3658a4671b330e086c487cc9d1340e2e.tar.xz
Fix long-lived thread name logging.
-rw-r--r--OpenSim/Framework/Monitoring/Watchdog.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Monitoring/Watchdog.cs b/OpenSim/Framework/Monitoring/Watchdog.cs
index e9f22f1..0fcb195 100644
--- a/OpenSim/Framework/Monitoring/Watchdog.cs
+++ b/OpenSim/Framework/Monitoring/Watchdog.cs
@@ -225,7 +225,7 @@ namespace OpenSim.Framework.Monitoring
225 225
226 if (log) 226 if (log)
227 m_log.DebugFormat( 227 m_log.DebugFormat(
228 "[WATCHDOG]: Started tracking thread {0}, ID {1}", twi.Thread.Name, twi.Thread.ManagedThreadId); 228 "[WATCHDOG]: Started tracking thread {0}, ID {1}", name, twi.Thread.ManagedThreadId);
229 229
230 lock (m_threads) 230 lock (m_threads)
231 m_threads.Add(twi.Thread.ManagedThreadId, twi); 231 m_threads.Add(twi.Thread.ManagedThreadId, twi);