diff options
author | Justin Clarke Casey | 2007-12-23 02:14:29 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2007-12-23 02:14:29 +0000 |
commit | c545cc8cd914d6ded605fa2a195461c7aaf3a615 (patch) | |
tree | a779ea09574ba196c54a2c7c62d36fa3171299ef /OpenSim/Framework/Communications | |
parent | Simplify GridServer mainmap log messages. (diff) | |
download | opensim-SC_OLD-c545cc8cd914d6ded605fa2a195461c7aaf3a615.zip opensim-SC_OLD-c545cc8cd914d6ded605fa2a195461c7aaf3a615.tar.gz opensim-SC_OLD-c545cc8cd914d6ded605fa2a195461c7aaf3a615.tar.bz2 opensim-SC_OLD-c545cc8cd914d6ded605fa2a195461c7aaf3a615.tar.xz |
Miscellaneous small tweaks and more logging messages to move towards resolving inventory problems
Diffstat (limited to 'OpenSim/Framework/Communications')
-rw-r--r-- | OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs index 6a7be78..23bddcf 100644 --- a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs +++ b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs | |||
@@ -27,6 +27,7 @@ | |||
27 | */ | 27 | */ |
28 | using System.Collections.Generic; | 28 | using System.Collections.Generic; |
29 | using libsecondlife; | 29 | using libsecondlife; |
30 | using OpenSim.Framework.Console; | ||
30 | 31 | ||
31 | namespace OpenSim.Framework.Communications.Cache | 32 | namespace OpenSim.Framework.Communications.Cache |
32 | { | 33 | { |
@@ -61,12 +62,14 @@ namespace OpenSim.Framework.Communications.Cache | |||
61 | 62 | ||
62 | if (userInfo.UserProfile != null) | 63 | if (userInfo.UserProfile != null) |
63 | { | 64 | { |
64 | RequestInventoryForUser(userID, userInfo); | 65 | // The request itself will occur when the agent finishes logging on to the region |
66 | // so there's no need to do it here. | ||
67 | //RequestInventoryForUser(userID, userInfo); | ||
65 | m_userProfiles.Add(userID, userInfo); | 68 | m_userProfiles.Add(userID, userInfo); |
66 | } | 69 | } |
67 | else | 70 | else |
68 | { | 71 | { |
69 | System.Console.WriteLine("CACHE", "User profile for user not found"); | 72 | MainLog.Instance.Error("USERCACHE", "User profile for user {0} not found", userID); |
70 | } | 73 | } |
71 | } | 74 | } |
72 | } | 75 | } |