fixing warning in IRCBridgeModule and logging the exception cause now.

This commit is contained in:
Dr Scofield
2008-07-14 12:32:34 +00:00
parent 7692f3e18f
commit 4476d484c3

View File

@@ -438,9 +438,10 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Chat
m_enabled = true;
}
}
catch (Exception e)
catch (Exception ex)
{
m_log.Info("[CHAT]: Incomplete IRC config information, skipping IRC bridge configuration");
m_log.Info("[IRC]: Incomplete IRC configuration, skipping IRC bridge configuration");
m_log.DebugFormat("[IRC] Incomplete IRC configuration: {0}", ex.ToString());
}
}