aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorRobert Adams2012-08-15 16:39:00 -0700
committerJustin Clark-Casey (justincc)2012-08-24 21:50:03 +0100
commitfbff51f38782fdf709a77125738427ad42382d03 (patch)
tree23fe166fd6a86decde3a73f2c15b615b0a1b1cc2
parentImplementing PRIM_LINK_TARGET in a non-recursive fashion (diff)
downloadopensim-SC_OLD-fbff51f38782fdf709a77125738427ad42382d03.zip
opensim-SC_OLD-fbff51f38782fdf709a77125738427ad42382d03.tar.gz
opensim-SC_OLD-fbff51f38782fdf709a77125738427ad42382d03.tar.bz2
opensim-SC_OLD-fbff51f38782fdf709a77125738427ad42382d03.tar.xz
Correct an exception report in SceneObjectPart so it outputs the stack.
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneObjectPart.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
index 4c87639..3512dbd 100644
--- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
@@ -733,7 +733,7 @@ namespace OpenSim.Region.Framework.Scenes
733 } 733 }
734 catch (Exception e) 734 catch (Exception e)
735 { 735 {
736 m_log.Error("[SCENEOBJECTPART]: GROUP POSITION. " + e.Message); 736 m_log.ErrorFormat("[SCENEOBJECTPART]: GROUP POSITION. {0}", e);
737 } 737 }
738 } 738 }
739 739