diff options
author | Justin Clark-Casey (justincc) | 2013-12-14 02:23:12 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-12-14 02:23:12 +0000 |
commit | ee163b5751f367866bc7370faf265fd30be3729e (patch) | |
tree | 8b8ac21bed7696b69a63623c686a8c5f440269b4 /OpenSim/Region/OptionalModules/Scripting | |
parent | Merge branch 'justincc-master' (diff) | |
parent | Wrap analysis of the particle system in the UUID Gatherer in a separate try/c... (diff) | |
download | opensim-SC_OLD-ee163b5751f367866bc7370faf265fd30be3729e.zip opensim-SC_OLD-ee163b5751f367866bc7370faf265fd30be3729e.tar.gz opensim-SC_OLD-ee163b5751f367866bc7370faf265fd30be3729e.tar.bz2 opensim-SC_OLD-ee163b5751f367866bc7370faf265fd30be3729e.tar.xz |
Merge branch 'justincc-master'
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting')
-rw-r--r-- | OpenSim/Region/OptionalModules/Scripting/RegionReadyModule/RegionReadyModule.cs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/RegionReadyModule/RegionReadyModule.cs b/OpenSim/Region/OptionalModules/Scripting/RegionReadyModule/RegionReadyModule.cs index c717128..eb386fe 100644 --- a/OpenSim/Region/OptionalModules/Scripting/RegionReadyModule/RegionReadyModule.cs +++ b/OpenSim/Region/OptionalModules/Scripting/RegionReadyModule/RegionReadyModule.cs | |||
@@ -216,9 +216,11 @@ namespace OpenSim.Region.OptionalModules.Scripting.RegionReady | |||
216 | // m_log.InfoFormat("[RegionReady]: Logins enabled for {0}, Oar {1}", | 216 | // m_log.InfoFormat("[RegionReady]: Logins enabled for {0}, Oar {1}", |
217 | // m_scene.RegionInfo.RegionName, m_oarFileLoading.ToString()); | 217 | // m_scene.RegionInfo.RegionName, m_oarFileLoading.ToString()); |
218 | 218 | ||
219 | // Warn level because the region cannot be used while logins are disabled | 219 | // Putting this out to console to make it eye-catching for people who are running OpenSimulator |
220 | m_log.WarnFormat( | 220 | // without info log messages enabled. Making this a warning is arguably misleading since it isn't a |
221 | "[RegionReady]: INITIALIZATION COMPLETE FOR {0} - LOGINS ENABLED", m_scene.Name); | 221 | // warning, and monitor scripts looking for warn/error/fatal messages will received false positives. |
222 | // Arguably, log4net needs a status log level (like Apache). | ||
223 | MainConsole.Instance.OutputFormat("INITIALIZATION COMPLETE FOR {0} - LOGINS ENABLED", m_scene.Name); | ||
222 | } | 224 | } |
223 | 225 | ||
224 | m_scene.SceneGridService.InformNeighborsThatRegionisUp( | 226 | m_scene.SceneGridService.InformNeighborsThatRegionisUp( |