diff options
author | Justin Clarke Casey | 2008-07-13 00:21:23 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-07-13 00:21:23 +0000 |
commit | 92cac0c6decc18fcb506afaf8befa833bf5763c7 (patch) | |
tree | e118c5bd4d0cddee4351b8ec6b87981c788b98ea | |
parent | * Actually persist restored archives to the database - wasn't actually doing ... (diff) | |
download | opensim-SC_OLD-92cac0c6decc18fcb506afaf8befa833bf5763c7.zip opensim-SC_OLD-92cac0c6decc18fcb506afaf8befa833bf5763c7.tar.gz opensim-SC_OLD-92cac0c6decc18fcb506afaf8befa833bf5763c7.tar.bz2 opensim-SC_OLD-92cac0c6decc18fcb506afaf8befa833bf5763c7.tar.xz |
* minor: make scene closing log message info rather than warn
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.cs | 3 |
1 files changed, 2 insertions, 1 deletions
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 | |||
605 | // This is the method that shuts down the scene. | 605 | // This is the method that shuts down the scene. |
606 | public override void Close() | 606 | public override void Close() |
607 | { | 607 | { |
608 | m_log.Warn("[SCENE]: Closing down the single simulator: " + RegionInfo.RegionName); | 608 | m_log.InfoFormat("[SCENE]: Closing down the single simulator: {0}", RegionInfo.RegionName); |
609 | |||
609 | // Kick all ROOT agents with the message, 'The simulator is going down' | 610 | // Kick all ROOT agents with the message, 'The simulator is going down' |
610 | ForEachScenePresence(delegate(ScenePresence avatar) | 611 | ForEachScenePresence(delegate(ScenePresence avatar) |
611 | { | 612 | { |