aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts
diff options
context:
space:
mode:
authorMelanie2019-08-07 18:30:08 +0100
committerMelanie2019-08-07 18:30:08 +0100
commit1a8c235d583ccd39344b3c0deadd547757a46712 (patch)
tree660adb934199561dc75946343665fa07ac1f2bfa /OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts
parentPut a scope un users. Should fix Unknown UserUMMAU43 unless the user IS unknown (diff)
downloadopensim-SC-1a8c235d583ccd39344b3c0deadd547757a46712.zip
opensim-SC-1a8c235d583ccd39344b3c0deadd547757a46712.tar.gz
opensim-SC-1a8c235d583ccd39344b3c0deadd547757a46712.tar.bz2
opensim-SC-1a8c235d583ccd39344b3c0deadd547757a46712.tar.xz
Remove debug output i left in
Diffstat (limited to 'OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts')
-rw-r--r--OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts/RemoteUserAccountServiceConnector.cs7
1 files changed, 0 insertions, 7 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts/RemoteUserAccountServiceConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts/RemoteUserAccountServiceConnector.cs
index 9574d08..b510d0a 100644
--- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts/RemoteUserAccountServiceConnector.cs
+++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts/RemoteUserAccountServiceConnector.cs
@@ -164,7 +164,6 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.UserAccounts
164 164
165 public override List<UserAccount> GetUserAccounts(UUID scopeID, List<string> IDs) 165 public override List<UserAccount> GetUserAccounts(UUID scopeID, List<string> IDs)
166 { 166 {
167 m_log.DebugFormat("[REMOTE USER ACCOUNTS]: Request for {0} records", IDs.Count);
168 List<UserAccount> accs = new List<UserAccount>(); 167 List<UserAccount> accs = new List<UserAccount>();
169 List<string> missing = new List<string>(); 168 List<string> missing = new List<string>();
170 169
@@ -178,14 +177,9 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.UserAccounts
178 { 177 {
179 account = m_Cache.Get(uuid, out inCache); 178 account = m_Cache.Get(uuid, out inCache);
180 if (inCache) 179 if (inCache)
181 {
182 accs.Add(account); 180 accs.Add(account);
183 m_log.DebugFormat("[REMOTE USER ACCOUNTS]: Found in cache: {0}, is null {1}", uuid, account == null);
184 }
185 else 181 else
186 {
187 missing.Add(id); 182 missing.Add(id);
188 }
189 } 183 }
190 } 184 }
191 185
@@ -204,7 +198,6 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.UserAccounts
204 } 198 }
205 } 199 }
206 } 200 }
207 m_log.DebugFormat("[REMOTE USER ACCOUNTS]: returned {0} records", accs.Count);
208 return accs; 201 return accs;
209 } 202 }
210 203