aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/HypergridService/HGInstantMessageService.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2014-02-14 00:16:17 +0000
committerJustin Clark-Casey (justincc)2014-02-14 00:16:17 +0000
commitffd0da23fb9041df730438a614161a5e3dbc2846 (patch)
treefc2bc9b58cf0f829ee7b81068cd59646b8ecfc67 /OpenSim/Services/HypergridService/HGInstantMessageService.cs
parentMerge branch 'justincc-master' (diff)
parentChange warns associated with UserAgentServiceConnector to debugs, as this is ... (diff)
downloadopensim-SC_OLD-ffd0da23fb9041df730438a614161a5e3dbc2846.zip
opensim-SC_OLD-ffd0da23fb9041df730438a614161a5e3dbc2846.tar.gz
opensim-SC_OLD-ffd0da23fb9041df730438a614161a5e3dbc2846.tar.bz2
opensim-SC_OLD-ffd0da23fb9041df730438a614161a5e3dbc2846.tar.xz
Merge branch 'justincc-master'
Diffstat (limited to '')
-rw-r--r--OpenSim/Services/HypergridService/HGInstantMessageService.cs10
1 files changed, 9 insertions, 1 deletions
diff --git a/OpenSim/Services/HypergridService/HGInstantMessageService.cs b/OpenSim/Services/HypergridService/HGInstantMessageService.cs
index e8d7cca..9b7b278 100644
--- a/OpenSim/Services/HypergridService/HGInstantMessageService.cs
+++ b/OpenSim/Services/HypergridService/HGInstantMessageService.cs
@@ -215,7 +215,15 @@ namespace OpenSim.Services.HypergridService
215 { 215 {
216 // Let's check with the UAS if the user is elsewhere 216 // Let's check with the UAS if the user is elsewhere
217 m_log.DebugFormat("[HG IM SERVICE]: User is not present. Checking location with User Agent service"); 217 m_log.DebugFormat("[HG IM SERVICE]: User is not present. Checking location with User Agent service");
218 url = m_UserAgentService.LocateUser(toAgentID); 218 try
219 {
220 url = m_UserAgentService.LocateUser(toAgentID);
221 }
222 catch (Exception e)
223 {
224 m_log.Warn("[HG IM SERVICE]: LocateUser call failed ", e);
225 url = string.Empty;
226 }
219 } 227 }
220 228
221 // check if we've tried this before.. 229 // check if we've tried this before..