diff options
author | Dr Scofield | 2008-07-14 12:32:34 +0000 |
---|---|---|
committer | Dr Scofield | 2008-07-14 12:32:34 +0000 |
commit | 4476d484c3d1105b73eb6c2b3e8c20dd0cfe57ac (patch) | |
tree | 72425241d9afe7f920191f50675263ad638d0ba7 /OpenSim/Region | |
parent | further work in progress on the HttpServer side: XmlRpc handler path (diff) | |
download | opensim-SC_OLD-4476d484c3d1105b73eb6c2b3e8c20dd0cfe57ac.zip opensim-SC_OLD-4476d484c3d1105b73eb6c2b3e8c20dd0cfe57ac.tar.gz opensim-SC_OLD-4476d484c3d1105b73eb6c2b3e8c20dd0cfe57ac.tar.bz2 opensim-SC_OLD-4476d484c3d1105b73eb6c2b3e8c20dd0cfe57ac.tar.xz |
fixing warning in IRCBridgeModule and logging the exception cause now.
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/Environment/Modules/Avatar/Chat/IRCBridgeModule.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Modules/Avatar/Chat/IRCBridgeModule.cs b/OpenSim/Region/Environment/Modules/Avatar/Chat/IRCBridgeModule.cs index 2977009..d66f578 100644 --- a/OpenSim/Region/Environment/Modules/Avatar/Chat/IRCBridgeModule.cs +++ b/OpenSim/Region/Environment/Modules/Avatar/Chat/IRCBridgeModule.cs | |||
@@ -438,9 +438,10 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Chat | |||
438 | m_enabled = true; | 438 | m_enabled = true; |
439 | } | 439 | } |
440 | } | 440 | } |
441 | catch (Exception e) | 441 | catch (Exception ex) |
442 | { | 442 | { |
443 | m_log.Info("[CHAT]: Incomplete IRC config information, skipping IRC bridge configuration"); | 443 | m_log.Info("[IRC]: Incomplete IRC configuration, skipping IRC bridge configuration"); |
444 | m_log.DebugFormat("[IRC] Incomplete IRC configuration: {0}", ex.ToString()); | ||
444 | } | 445 | } |
445 | } | 446 | } |
446 | 447 | ||