minor: Make note in log if scene was restarted due to an unrecoverable physics error

connector_plugin
Justin Clark-Casey (justincc) 2012-11-23 04:06:48 +00:00
parent f473252fa8
commit 1f336579c8
1 changed files with 6 additions and 1 deletions

View File

@ -740,7 +740,12 @@ namespace OpenSim.Region.Framework.Scenes
//
// Out of memory
// Operating system has killed the plugin
m_sceneGraph.UnRecoverableError += RestartNow;
m_sceneGraph.UnRecoverableError
+= () =>
{
m_log.ErrorFormat("[SCENE]: Restarting region {0} due to unrecoverable physics crash", Name);
RestartNow();
};
RegisterDefaultSceneEvents();