aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/UserServer
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-04-20 23:07:20 +0000
committerJustin Clarke Casey2008-04-20 23:07:20 +0000
commit73f60f395ad2b566873218e70a7713be7116351e (patch)
treead4f2da18be01b4031067ff5895c1bc070a393df /OpenSim/Grid/UserServer
parent* Remove user profile from cache when they log out from a region. (diff)
downloadopensim-SC_OLD-73f60f395ad2b566873218e70a7713be7116351e.zip
opensim-SC_OLD-73f60f395ad2b566873218e70a7713be7116351e.tar.gz
opensim-SC_OLD-73f60f395ad2b566873218e70a7713be7116351e.tar.bz2
opensim-SC_OLD-73f60f395ad2b566873218e70a7713be7116351e.tar.xz
* Extra log line to notify the user console when a new user inventory skeleton has been successfully created.
Diffstat (limited to 'OpenSim/Grid/UserServer')
-rw-r--r--OpenSim/Grid/UserServer/UserLoginService.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Grid/UserServer/UserLoginService.cs b/OpenSim/Grid/UserServer/UserLoginService.cs
index eb548a5..d7a3b1a 100644
--- a/OpenSim/Grid/UserServer/UserLoginService.cs
+++ b/OpenSim/Grid/UserServer/UserLoginService.cs
@@ -331,6 +331,10 @@ namespace OpenSim.Grid.UserServer
331 + " Please contact your inventory service provider for more information.", 331 + " Please contact your inventory service provider for more information.",
332 userID)); 332 userID));
333 } 333 }
334 else
335 {
336 m_log.InfoFormat("[LOGIN]: A new inventory skeleton was successfully created for user {0}", userID);
337 }
334 338
335 folders = SynchronousRestObjectPoster.BeginPostObject<Guid, List<InventoryFolderBase>>( 339 folders = SynchronousRestObjectPoster.BeginPostObject<Guid, List<InventoryFolderBase>>(
336 "POST", m_config.InventoryUrl + "RootFolders/", userID.UUID); 340 "POST", m_config.InventoryUrl + "RootFolders/", userID.UUID);