diff options
author | Jeff Ames | 2008-02-13 03:38:18 +0000 |
---|---|---|
committer | Jeff Ames | 2008-02-13 03:38:18 +0000 |
commit | 001ce95e4c4bf4f0929c2ced4ab22e3bc40fd1d6 (patch) | |
tree | 35f528caf55171c0c53cd81501ebaa22f31e0d2a /OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs | |
parent | * Clean up LIBRARY INVENTORY messages (diff) | |
download | opensim-SC_OLD-001ce95e4c4bf4f0929c2ced4ab22e3bc40fd1d6.zip opensim-SC_OLD-001ce95e4c4bf4f0929c2ced4ab22e3bc40fd1d6.tar.gz opensim-SC_OLD-001ce95e4c4bf4f0929c2ced4ab22e3bc40fd1d6.tar.bz2 opensim-SC_OLD-001ce95e4c4bf4f0929c2ced4ab22e3bc40fd1d6.tar.xz |
Clean up more unnecessary String.Format calls
Diffstat (limited to 'OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs')
-rw-r--r-- | OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs index 257747b..455f722 100644 --- a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs +++ b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs | |||
@@ -233,28 +233,25 @@ namespace OpenSim.Framework.Communications.Cache | |||
233 | } | 233 | } |
234 | else | 234 | else |
235 | { | 235 | { |
236 | m_log.Error( | 236 | m_log.ErrorFormat("[INVENTORYCACHE]: Could not find root folder for user {0}", remoteClient.Name); |
237 | String.Format("[INVENTORYCACHE]: Could not find root folder for user {0}", remoteClient.Name)); | ||
238 | 237 | ||
239 | return; | 238 | return; |
240 | } | 239 | } |
241 | } | 240 | } |
242 | else | 241 | else |
243 | { | 242 | { |
244 | m_log.Error( | 243 | m_log.ErrorFormat("[INVENTORYCACHE]: " + |
245 | String.Format("[INVENTORYCACHE]: " + | ||
246 | "Could not find user profile for {0} for folder {1}", | 244 | "Could not find user profile for {0} for folder {1}", |
247 | remoteClient.Name, folderID)); | 245 | remoteClient.Name, folderID); |
248 | 246 | ||
249 | return; | 247 | return; |
250 | } | 248 | } |
251 | 249 | ||
252 | // If we've reached this point then we couldn't find the folder, even though the client thinks | 250 | // If we've reached this point then we couldn't find the folder, even though the client thinks |
253 | // it exists | 251 | // it exists |
254 | m_log.Error( | 252 | m_log.ErrorFormat("[INVENTORYCACHE]: " + |
255 | String.Format("[INVENTORYCACHE]: " + | ||
256 | "Could not find folder {0} for user {1}", | 253 | "Could not find folder {0} for user {1}", |
257 | folderID, remoteClient.Name)); | 254 | folderID, remoteClient.Name); |
258 | } | 255 | } |
259 | 256 | ||
260 | public void HandlePurgeInventoryDescendents(IClientAPI remoteClient, LLUUID folderID) | 257 | public void HandlePurgeInventoryDescendents(IClientAPI remoteClient, LLUUID folderID) |