aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/Avatar/InstantMessage/MessageTransferModule.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Modules/Avatar/InstantMessage/MessageTransferModule.cs10
1 files changed, 6 insertions, 4 deletions
diff --git a/OpenSim/Region/Environment/Modules/Avatar/InstantMessage/MessageTransferModule.cs b/OpenSim/Region/Environment/Modules/Avatar/InstantMessage/MessageTransferModule.cs
index 3977963..dec4ca0 100644
--- a/OpenSim/Region/Environment/Modules/Avatar/InstantMessage/MessageTransferModule.cs
+++ b/OpenSim/Region/Environment/Modules/Avatar/InstantMessage/MessageTransferModule.cs
@@ -134,7 +134,8 @@ namespace OpenSim.Region.Environment.Modules.Avatar.InstantMessage
134 // try child avatar second 134 // try child avatar second
135 foreach (Scene scene in m_Scenes) 135 foreach (Scene scene in m_Scenes)
136 { 136 {
137 m_log.DebugFormat("[INSTANT MESSAGE]: Looking for child of {0} in {1}", toAgentID.ToString(), scene.RegionInfo.RegionName); 137// m_log.DebugFormat(
138// "[INSTANT MESSAGE]: Looking for child of {0} in {1}", toAgentID, scene.RegionInfo.RegionName);
138 139
139 if (scene.Entities.ContainsKey(toAgentID) && 140 if (scene.Entities.ContainsKey(toAgentID) &&
140 scene.Entities[toAgentID] is ScenePresence) 141 scene.Entities[toAgentID] is ScenePresence)
@@ -161,13 +162,13 @@ namespace OpenSim.Region.Environment.Modules.Avatar.InstantMessage
161 162
162 if (m_Gridmode) 163 if (m_Gridmode)
163 { 164 {
164 m_log.DebugFormat("[INSTANT MESSAGE]: Delivering via grid"); 165 //m_log.DebugFormat("[INSTANT MESSAGE]: Delivering via grid");
165 // Still here, try send via Grid 166 // Still here, try send via Grid
166 SendGridInstantMessageViaXMLRPC(im, result); 167 SendGridInstantMessageViaXMLRPC(im, result);
167 return; 168 return;
168 } 169 }
169 170
170 m_log.DebugFormat("[INSTANT MESSAGE]: Undeliverable"); 171 //m_log.DebugFormat("[INSTANT MESSAGE]: Undeliverable");
171 result(false); 172 result(false);
172 return; 173 return;
173 } 174 }
@@ -184,7 +185,8 @@ namespace OpenSim.Region.Environment.Modules.Avatar.InstantMessage
184 185
185 // TODO: For now, as IMs seem to be a bit unreliable on OSGrid, catch all exception that 186 // TODO: For now, as IMs seem to be a bit unreliable on OSGrid, catch all exception that
186 // happen here and aren't caught and log them. 187 // happen here and aren't caught and log them.
187 try { 188 try
189 {
188 // various rational defaults 190 // various rational defaults
189 UUID fromAgentID = UUID.Zero; 191 UUID fromAgentID = UUID.Zero;
190 UUID toAgentID = UUID.Zero; 192 UUID toAgentID = UUID.Zero;