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
soprefactor
Justin Clark-Casey (justincc) 2010-06-04 18:08:40 +01:00
parent 55040a84a5
commit 041f253e2b
1 changed files with 2 additions and 2 deletions

View File

@ -267,7 +267,7 @@ namespace OpenSim.Region.Framework.Scenes
}
catch (Exception e)
{
m_log.Error("[SCENE]: SceneBase.cs: Close() - Failed with exception " + e.ToString());
m_log.Error(string.Format("[SCENE]: SceneBase.cs: Close() - Failed with exception ", e));
}
}
@ -376,7 +376,7 @@ namespace OpenSim.Region.Framework.Scenes
/// <param name="mod"></param>
public void RegisterModuleInterface<M>(M mod)
{
m_log.DebugFormat("[SCENE BASE]: Registering interface {0}", typeof(M));
// m_log.DebugFormat("[SCENE BASE]: Registering interface {0}", typeof(M));
List<Object> l = null;
if (!ModuleInterfaces.TryGetValue(typeof(M), out l))