diff options
author | Justin Clarke Casey | 2008-09-18 18:54:42 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-09-18 18:54:42 +0000 |
commit | 8ff1bc5b03adfc11903dfdc244e6fe26f07b4bd2 (patch) | |
tree | fd148eead472df1afa9da4ab46de4e024ce48497 /OpenSim/Region/Physics/OdePlugin | |
parent | Reverse yes and no for the parcel's "public" property to make it accurately (diff) | |
download | opensim-SC_OLD-8ff1bc5b03adfc11903dfdc244e6fe26f07b4bd2.zip opensim-SC_OLD-8ff1bc5b03adfc11903dfdc244e6fe26f07b4bd2.tar.gz opensim-SC_OLD-8ff1bc5b03adfc11903dfdc244e6fe26f07b4bd2.tar.bz2 opensim-SC_OLD-8ff1bc5b03adfc11903dfdc244e6fe26f07b4bd2.tar.xz |
* Make the ode simulation update loop print out the stack if an exception occurs (at least, this is what will happen on linux)
Diffstat (limited to 'OpenSim/Region/Physics/OdePlugin')
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs index 5a501ef..245c757 100644 --- a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs +++ b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | |||
@@ -1732,7 +1732,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1732 | } | 1732 | } |
1733 | catch (Exception e) | 1733 | catch (Exception e) |
1734 | { | 1734 | { |
1735 | m_log.Error("[PHYSICS]: " + e.Message.ToString() + e.TargetSite.ToString()); | 1735 | m_log.ErrorFormat("[PHYSICS]: {0}, {1}, {2}", e.Message, e.TargetSite, e); |
1736 | ode.dunlock(world); | 1736 | ode.dunlock(world); |
1737 | } | 1737 | } |
1738 | 1738 | ||