From 92cac0c6decc18fcb506afaf8befa833bf5763c7 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Sun, 13 Jul 2008 00:21:23 +0000 Subject: * minor: make scene closing log message info rather than warn --- OpenSim/Region/Environment/Scenes/Scene.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index fb931f4..a78ad98 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs @@ -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) { -- cgit v1.1