Fixed typo in Region Sync Module debug message Log Headers.

dsg
Dan Lake 2011-01-11 12:21:04 -08:00
parent b5463e042c
commit 9d5888e0f6
1 changed files with 2 additions and 2 deletions

View File

@ -203,7 +203,7 @@ namespace OpenSim.Region.CoreModules.RegionSync.RegionSyncModule
// Existing value of 1 indicates that updates are currently being sent so skip updates this pass
if (Interlocked.Exchange(ref m_sendingUpdates, 1) == 1)
{
m_log.WarnFormat("[REGION SYNC SERVER MODULE] SendUpdates(): An update thread is already running.");
m_log.WarnFormat("[REGION SYNC MODULE] SendUpdates(): An update thread is already running.");
return;
}
@ -281,7 +281,7 @@ namespace OpenSim.Region.CoreModules.RegionSync.RegionSyncModule
}
catch (Exception e)
{
m_log.ErrorFormat("[REGION SYNC SERVER MODULE] Caught exception sending presence updates for {0}: {1}", presence.Name, e.Message);
m_log.ErrorFormat("[REGION SYNC MODULE] Caught exception sending presence updates for {0}: {1}", presence.Name, e.Message);
}
}
* */