* minor: make scene closing log message info rather than warn

0.6.0-stable
Justin Clarke Casey 2008-07-13 00:21:23 +00:00
parent eb63b9bbc1
commit 92cac0c6de
1 changed files with 2 additions and 1 deletions

View File

@ -605,7 +605,8 @@ namespace OpenSim.Region.Environment.Scenes
// This is the method that shuts down the scene.
public override void Close()
{
m_log.Warn("[SCENE]: Closing down the single simulator: " + RegionInfo.RegionName);
m_log.InfoFormat("[SCENE]: Closing down the single simulator: {0}", RegionInfo.RegionName);
// Kick all ROOT agents with the message, 'The simulator is going down'
ForEachScenePresence(delegate(ScenePresence avatar)
{