diff options
author | Melanie | 2010-12-22 17:33:06 +0000 |
---|---|---|
committer | Melanie | 2010-12-22 17:33:06 +0000 |
commit | 990e73d7cb666fa761d0ba981721764963ade94a (patch) | |
tree | 8911bcc41ff89a69a872722bec22664b9fcac925 | |
parent | * Adds AbortXfer to the ClientAPI mix (diff) | |
download | opensim-SC_OLD-990e73d7cb666fa761d0ba981721764963ade94a.zip opensim-SC_OLD-990e73d7cb666fa761d0ba981721764963ade94a.tar.gz opensim-SC_OLD-990e73d7cb666fa761d0ba981721764963ade94a.tar.bz2 opensim-SC_OLD-990e73d7cb666fa761d0ba981721764963ade94a.tar.xz |
Fix a broken format on an error message. Also replace yet another e.Message
with e.ToString(). e.Message is USELESS, it doesn't tell us what happened
where, we should use e.ToSTring() everywhere
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/InstantMessage/MessageTransferModule.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/InstantMessage/MessageTransferModule.cs b/OpenSim/Region/CoreModules/Avatar/InstantMessage/MessageTransferModule.cs index fdc48c6..21a61a7 100644 --- a/OpenSim/Region/CoreModules/Avatar/InstantMessage/MessageTransferModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/InstantMessage/MessageTransferModule.cs | |||
@@ -621,8 +621,7 @@ namespace OpenSim.Region.CoreModules.Avatar.InstantMessage | |||
621 | } | 621 | } |
622 | catch (WebException e) | 622 | catch (WebException e) |
623 | { | 623 | { |
624 | m_log.ErrorFormat("[GRID INSTANT MESSAGE]: Error sending message to {0}} the host didn't respond ({2})", | 624 | m_log.ErrorFormat("[GRID INSTANT MESSAGE]: Error sending message to {0} the host didn't respond " + e.ToString(), reginfo.ServerURI.ToString()); |
625 | reginfo.ServerURI, e.Message); | ||
626 | } | 625 | } |
627 | 626 | ||
628 | return false; | 627 | return false; |