diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/EntityManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Scenes/EntityManager.cs b/OpenSim/Region/Environment/Scenes/EntityManager.cs index 01f7a0f..f89d361 100644 --- a/OpenSim/Region/Environment/Scenes/EntityManager.cs +++ b/OpenSim/Region/Environment/Scenes/EntityManager.cs | |||
@@ -60,7 +60,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
60 | } | 60 | } |
61 | catch(Exception e) | 61 | catch(Exception e) |
62 | { | 62 | { |
63 | m_log.ErrorFormat("Add Entity failed: ", e); | 63 | m_log.ErrorFormat("Add Entity failed: {0}", e.Message); |
64 | } | 64 | } |
65 | } | 65 | } |
66 | } | 66 | } |
@@ -76,7 +76,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
76 | } | 76 | } |
77 | catch(Exception e) | 77 | catch(Exception e) |
78 | { | 78 | { |
79 | m_log.ErrorFormat("Insert or Replace Entity failed: ", e); | 79 | m_log.ErrorFormat("Insert or Replace Entity failed: {0}", e.Message); |
80 | } | 80 | } |
81 | } | 81 | } |
82 | } | 82 | } |