diff options
author | Justin Clark-Casey (justincc) | 2010-06-04 18:08:40 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-06-04 18:08:40 +0100 |
commit | 041f253e2b8ba1d470198849a09979c12b325719 (patch) | |
tree | 69906157fbb7ab406dde474fb497b31271627e1f | |
parent | Fix bug where prim items were not loaded in the new sqlite database handler (diff) | |
download | opensim-SC_OLD-041f253e2b8ba1d470198849a09979c12b325719.zip opensim-SC_OLD-041f253e2b8ba1d470198849a09979c12b325719.tar.gz opensim-SC_OLD-041f253e2b8ba1d470198849a09979c12b325719.tar.bz2 opensim-SC_OLD-041f253e2b8ba1d470198849a09979c12b325719.tar.xz |
minor: comment out region interface registration log msg I accidentally left in last week
also changes one log message to print out full exception stack trace on both mono/.net instead of just .net
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneBase.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneBase.cs b/OpenSim/Region/Framework/Scenes/SceneBase.cs index ee17fbf..f8591ba 100644 --- a/OpenSim/Region/Framework/Scenes/SceneBase.cs +++ b/OpenSim/Region/Framework/Scenes/SceneBase.cs | |||
@@ -267,7 +267,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
267 | } | 267 | } |
268 | catch (Exception e) | 268 | catch (Exception e) |
269 | { | 269 | { |
270 | m_log.Error("[SCENE]: SceneBase.cs: Close() - Failed with exception " + e.ToString()); | 270 | m_log.Error(string.Format("[SCENE]: SceneBase.cs: Close() - Failed with exception ", e)); |
271 | } | 271 | } |
272 | } | 272 | } |
273 | 273 | ||
@@ -376,7 +376,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
376 | /// <param name="mod"></param> | 376 | /// <param name="mod"></param> |
377 | public void RegisterModuleInterface<M>(M mod) | 377 | public void RegisterModuleInterface<M>(M mod) |
378 | { | 378 | { |
379 | m_log.DebugFormat("[SCENE BASE]: Registering interface {0}", typeof(M)); | 379 | // m_log.DebugFormat("[SCENE BASE]: Registering interface {0}", typeof(M)); |
380 | 380 | ||
381 | List<Object> l = null; | 381 | List<Object> l = null; |
382 | if (!ModuleInterfaces.TryGetValue(typeof(M), out l)) | 382 | if (!ModuleInterfaces.TryGetValue(typeof(M), out l)) |