fixing warning in IRCBridgeModule and logging the exception cause now.

0.6.0-stable
Dr Scofield 2008-07-14 12:32:34 +00:00
parent 7692f3e18f
commit 4476d484c3
1 changed files with 3 additions and 2 deletions

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());
}
}