* Ignore any exception encountered during shutdown rather than aborting the quit command
0.6.0-stable
Justin Clarke Casey 2008-09-29 15:40:16 +00:00
parent 0b2bc26bfe
commit a888dbc60a
1 changed files with 8 additions and 1 deletions

View File

@ -747,7 +747,14 @@ namespace OpenSim
// TODO: implement this // TODO: implement this
m_log.Info("[SHUTDOWN]: Closing console and terminating"); m_log.Info("[SHUTDOWN]: Closing console and terminating");
try
{
m_sceneManager.Close(); m_sceneManager.Close();
}
catch (Exception e)
{
m_log.ErrorFormat("[SHUTDOWN]: Ignoring failure during shutdown - {0}", e);
}
base.Shutdown(); base.Shutdown();
} }