aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/UserServer/UserLoginService.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-04-15 22:41:34 +0000
committerJustin Clarke Casey2008-04-15 22:41:34 +0000
commit379ac9c92ac2cdaf9ad4cc1e66de243a42ae7c42 (patch)
treea5d3f2367e901e3c2ce8f92cc5e5653c7111822f /OpenSim/Grid/UserServer/UserLoginService.cs
parent* Send a meaningful response to both the user server console and the client i... (diff)
downloadopensim-SC_OLD-379ac9c92ac2cdaf9ad4cc1e66de243a42ae7c42.zip
opensim-SC_OLD-379ac9c92ac2cdaf9ad4cc1e66de243a42ae7c42.tar.gz
opensim-SC_OLD-379ac9c92ac2cdaf9ad4cc1e66de243a42ae7c42.tar.bz2
opensim-SC_OLD-379ac9c92ac2cdaf9ad4cc1e66de243a42ae7c42.tar.xz
* Make it easier to follow logins on the user server by changing and tidying up log messages
Diffstat (limited to '')
-rw-r--r--OpenSim/Grid/UserServer/UserLoginService.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Grid/UserServer/UserLoginService.cs b/OpenSim/Grid/UserServer/UserLoginService.cs
index c07777e..d1d97f8 100644
--- a/OpenSim/Grid/UserServer/UserLoginService.cs
+++ b/OpenSim/Grid/UserServer/UserLoginService.cs
@@ -204,7 +204,7 @@ namespace OpenSim.Grid.UserServer
204 handlerUserLoggedInAtLocation = OnUserLoggedInAtLocation; 204 handlerUserLoggedInAtLocation = OnUserLoggedInAtLocation;
205 if (handlerUserLoggedInAtLocation != null) 205 if (handlerUserLoggedInAtLocation != null)
206 { 206 {
207 m_log.Info("[LOGIN]: Letting other objects know about login"); 207 //m_log.Info("[LOGIN]: Letting other objects know about login");
208 handlerUserLoggedInAtLocation(theUser.ID, theUser.CurrentAgent.SessionID, theUser.CurrentAgent.Region, 208 handlerUserLoggedInAtLocation(theUser.ID, theUser.CurrentAgent.SessionID, theUser.CurrentAgent.Region,
209 theUser.CurrentAgent.Handle, theUser.CurrentAgent.Position.X,theUser.CurrentAgent.Position.Y,theUser.CurrentAgent.Position.Z, 209 theUser.CurrentAgent.Handle, theUser.CurrentAgent.Position.X,theUser.CurrentAgent.Position.Y,theUser.CurrentAgent.Position.Z,
210 theUser.FirstName,theUser.SurName); 210 theUser.FirstName,theUser.SurName);
@@ -302,7 +302,9 @@ namespace OpenSim.Grid.UserServer
302 // See LoginService 302 // See LoginService
303 protected override InventoryData GetInventorySkeleton(LLUUID userID) 303 protected override InventoryData GetInventorySkeleton(LLUUID userID)
304 { 304 {
305 m_log.InfoFormat("[LOGIN]: Contacting inventory service at {0} for inventory skeleton of agent {1}", m_config.InventoryUrl, userID); 305 m_log.DebugFormat(
306 "[LOGIN]: Contacting inventory service at {0} for inventory skeleton of agent {1}",
307 m_config.InventoryUrl, userID);
306 308
307 List<InventoryFolderBase> folders 309 List<InventoryFolderBase> folders
308 = SynchronousRestObjectPoster.BeginPostObject<Guid, List<InventoryFolderBase>>( 310 = SynchronousRestObjectPoster.BeginPostObject<Guid, List<InventoryFolderBase>>(