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

0.7.3-extended
Justin Clark-Casey (justincc) 2012-11-23 04:06:48 +00:00
parent d3776e8fba
commit 57530c8897
1 changed files with 6 additions and 1 deletions

View File

@ -670,7 +670,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();