diff options
author | Melanie | 2019-08-07 18:30:08 +0100 |
---|---|---|
committer | Melanie | 2019-08-07 18:30:08 +0100 |
commit | 1a8c235d583ccd39344b3c0deadd547757a46712 (patch) | |
tree | 660adb934199561dc75946343665fa07ac1f2bfa | |
parent | Put a scope un users. Should fix Unknown UserUMMAU43 unless the user IS unknown (diff) | |
download | opensim-SC-1a8c235d583ccd39344b3c0deadd547757a46712.zip opensim-SC-1a8c235d583ccd39344b3c0deadd547757a46712.tar.gz opensim-SC-1a8c235d583ccd39344b3c0deadd547757a46712.tar.bz2 opensim-SC-1a8c235d583ccd39344b3c0deadd547757a46712.tar.xz |
Remove debug output i left in
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts/RemoteUserAccountServiceConnector.cs | 7 |
2 files changed, 0 insertions, 9 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs b/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs index 9f1ea4d..aca3ea5 100644 --- a/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs | |||
@@ -1949,7 +1949,6 @@ namespace OpenSim.Region.ClientStack.Linden | |||
1949 | 1949 | ||
1950 | NameValueCollection query = HttpUtility.ParseQueryString(httpRequest.Url.Query); | 1950 | NameValueCollection query = HttpUtility.ParseQueryString(httpRequest.Url.Query); |
1951 | string[] ids = query.GetValues("ids"); | 1951 | string[] ids = query.GetValues("ids"); |
1952 | m_log.DebugFormat("[DISPLAYNAMES]: Request for {0} names", ids.Length); | ||
1953 | 1952 | ||
1954 | Dictionary<UUID,string> names = m_UserManager.GetUsersNames(ids, m_scopeID); | 1953 | Dictionary<UUID,string> names = m_UserManager.GetUsersNames(ids, m_scopeID); |
1955 | StringBuilder lsl = LLSDxmlEncode.Start(names.Count * 256 + 256); | 1954 | StringBuilder lsl = LLSDxmlEncode.Start(names.Count * 256 + 256); |
@@ -1995,7 +1994,6 @@ namespace OpenSim.Region.ClientStack.Linden | |||
1995 | } | 1994 | } |
1996 | 1995 | ||
1997 | LLSDxmlEncode.AddEndMap(lsl); | 1996 | LLSDxmlEncode.AddEndMap(lsl); |
1998 | m_log.DebugFormat("[DISPLAYNAMES]: Returned {0} names", ct); | ||
1999 | return LLSDxmlEncode.End(lsl);; | 1997 | return LLSDxmlEncode.End(lsl);; |
2000 | } | 1998 | } |
2001 | } | 1999 | } |
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 | ||