diff options
author | Justin Clark-Casey (justincc) | 2014-02-14 00:08:13 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2014-02-14 00:08:13 +0000 |
commit | f49d51308938e397dbe44820b7497437fd785d10 (patch) | |
tree | 7ff30646835506629f3a7e184b5cdb7deff7bcdf /OpenSim/Region/CoreModules/Avatar | |
parent | If calls to UserAgentServiceConnector fail then throw an exception. This lets... (diff) | |
download | opensim-SC-f49d51308938e397dbe44820b7497437fd785d10.zip opensim-SC-f49d51308938e397dbe44820b7497437fd785d10.tar.gz opensim-SC-f49d51308938e397dbe44820b7497437fd785d10.tar.bz2 opensim-SC-f49d51308938e397dbe44820b7497437fd785d10.tar.xz |
Change warns associated with UserAgentServiceConnector to debugs, as this is not necessarily a problen with the source simulator (e.g. someone else's remote simulator cannot be contacted).
This is Oren Hurvitz's second patch from http://opensimulator.org/mantis/view.php?id=6956 with a small amount of correction
Diffstat (limited to 'OpenSim/Region/CoreModules/Avatar')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/InstantMessage/HGMessageTransferModule.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/UserProfiles/UserProfileModule.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/InstantMessage/HGMessageTransferModule.cs b/OpenSim/Region/CoreModules/Avatar/InstantMessage/HGMessageTransferModule.cs index d46cb55..c51b30f 100644 --- a/OpenSim/Region/CoreModules/Avatar/InstantMessage/HGMessageTransferModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/InstantMessage/HGMessageTransferModule.cs | |||
@@ -289,7 +289,7 @@ namespace OpenSim.Region.CoreModules.Avatar.InstantMessage | |||
289 | agentUUI = uasConn.GetUUI(fromAgent, toAgent); | 289 | agentUUI = uasConn.GetUUI(fromAgent, toAgent); |
290 | } | 290 | } |
291 | catch (Exception e) { | 291 | catch (Exception e) { |
292 | m_log.Warn("[HG MESSAGE TRANSFER]: GetUUI call failed ", e); | 292 | m_log.Debug("[HG MESSAGE TRANSFER]: GetUUI call failed ", e); |
293 | } | 293 | } |
294 | 294 | ||
295 | return agentUUI; | 295 | return agentUUI; |
diff --git a/OpenSim/Region/CoreModules/Avatar/UserProfiles/UserProfileModule.cs b/OpenSim/Region/CoreModules/Avatar/UserProfiles/UserProfileModule.cs index ed8864d..9e6c752 100644 --- a/OpenSim/Region/CoreModules/Avatar/UserProfiles/UserProfileModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/UserProfiles/UserProfileModule.cs | |||
@@ -1171,7 +1171,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.UserProfiles | |||
1171 | } | 1171 | } |
1172 | catch (Exception e) | 1172 | catch (Exception e) |
1173 | { | 1173 | { |
1174 | m_log.Warn("[PROFILES]: GetUserInfo call failed ", e); | 1174 | m_log.Debug("[PROFILES]: GetUserInfo call failed ", e); |
1175 | account = new Dictionary<string, object>(); | 1175 | account = new Dictionary<string, object>(); |
1176 | } | 1176 | } |
1177 | 1177 | ||