diff options
author | Justin Clarke Casey | 2008-04-08 20:31:36 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-04-08 20:31:36 +0000 |
commit | 8eab365e213650a3937b92f9aa82a710a84d5903 (patch) | |
tree | 290d2092c76c0b1a337cdebfa7e16c414b269e1b /OpenSim/Framework | |
parent | * Following A_Biondi's suggestion, going to try returning a version number of... (diff) | |
download | opensim-SC_OLD-8eab365e213650a3937b92f9aa82a710a84d5903.zip opensim-SC_OLD-8eab365e213650a3937b92f9aa82a710a84d5903.tar.gz opensim-SC_OLD-8eab365e213650a3937b92f9aa82a710a84d5903.tar.bz2 opensim-SC_OLD-8eab365e213650a3937b92f9aa82a710a84d5903.tar.xz |
* Adjust some inventory lookup failure messages to reduce confusion as to what just went wrong
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs index 6f11d60..b22c0af 100644 --- a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs +++ b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs | |||
@@ -280,8 +280,9 @@ namespace OpenSim.Framework.Communications.Cache | |||
280 | } | 280 | } |
281 | else | 281 | else |
282 | { | 282 | { |
283 | m_log.ErrorFormat("[INVENTORY CACHE]: Could not find user profile for {0} for folder {1}", | 283 | m_log.ErrorFormat( |
284 | remoteClient.Name, folderID); | 284 | "[USER CACHE]: HandleFetchInventoryDescendents() could not find user profile {0}, {1}", |
285 | remoteClient.Name, remoteClient.AgentId); | ||
285 | 286 | ||
286 | return; | 287 | return; |
287 | } | 288 | } |
@@ -337,9 +338,10 @@ namespace OpenSim.Framework.Communications.Cache | |||
337 | } | 338 | } |
338 | else | 339 | else |
339 | { | 340 | { |
340 | m_log.ErrorFormat("[INVENTORY CACHE]: " + | 341 | m_log.ErrorFormat( |
341 | "Could not find user profile for {0} for folder {1}", | 342 | "[USER CACHE]: HandleFetchInventoryDescendentsCAPS() Could not find user profile for {0}", |
342 | agentID.ToString(), folderID); | 343 | agentID); |
344 | |||
343 | return new List<InventoryItemBase>(); | 345 | return new List<InventoryItemBase>(); |
344 | } | 346 | } |
345 | 347 | ||