diff options
author | diva | 2009-01-20 01:50:20 +0000 |
---|---|---|
committer | diva | 2009-01-20 01:50:20 +0000 |
commit | e4c1e20d278bb830d8c9877e2599d58097119687 (patch) | |
tree | 96aee4c25a3e99033ad11f65262e8d7bc75d0c23 | |
parent | Update svn properties. (diff) | |
download | opensim-SC_OLD-e4c1e20d278bb830d8c9877e2599d58097119687.zip opensim-SC_OLD-e4c1e20d278bb830d8c9877e2599d58097119687.tar.gz opensim-SC_OLD-e4c1e20d278bb830d8c9877e2599d58097119687.tar.bz2 opensim-SC_OLD-e4c1e20d278bb830d8c9877e2599d58097119687.tar.xz |
Very minor: added a missing {0} in a couple of Error messages.
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 | } |