aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-01-06 21:39:55 +0000
committerJustin Clarke Casey2009-01-06 21:39:55 +0000
commita31792ee5cb1ce619f21f5b428926c4709c3f14b (patch)
treef82a09b918c277741c97fdf4dca85fe1bd8463ac /OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
parent* Rename GetRandomCapsPath() to GetRandomCapsObjectPath() to fit in with term... (diff)
downloadopensim-SC_OLD-a31792ee5cb1ce619f21f5b428926c4709c3f14b.zip
opensim-SC_OLD-a31792ee5cb1ce619f21f5b428926c4709c3f14b.tar.gz
opensim-SC_OLD-a31792ee5cb1ce619f21f5b428926c4709c3f14b.tar.bz2
opensim-SC_OLD-a31792ee5cb1ce619f21f5b428926c4709c3f14b.tar.xz
* prune and regrade log messages relating to client login and logout
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs10
1 files changed, 4 insertions, 6 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index 38450ed..6742948 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -534,8 +534,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
534 m_clientPingTimer.Enabled = false; 534 m_clientPingTimer.Enabled = false;
535 535
536 m_log.DebugFormat( 536 m_log.DebugFormat(
537 "[CLIENT]: Close has been called with shutdownCircuit = {0} on scene {1}", 537 "[CLIENT]: Close has been called with shutdownCircuit = {0} for {1} attached to scene {2}",
538 shutdownCircuit, m_scene.RegionInfo.RegionName); 538 shutdownCircuit, Name, m_scene.RegionInfo.RegionName);
539 539
540 m_PacketHandler.Flush(); 540 m_PacketHandler.Flush();
541 541
@@ -724,7 +724,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
724 protected virtual void ClientLoop() 724 protected virtual void ClientLoop()
725 { 725 {
726 m_log.DebugFormat( 726 m_log.DebugFormat(
727 "[CLIENT]: Entered main packet processing loop for {0} {1}", FirstName, LastName); 727 "[CLIENT]: Entered main packet processing loop for {0} in {1}", Name, Scene.RegionInfo.RegionName);
728 728
729 while (IsActive) 729 while (IsActive)
730 { 730 {
@@ -3807,7 +3807,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
3807 /// <returns></returns> 3807 /// <returns></returns>
3808 protected virtual bool Logout(IClientAPI client) 3808 protected virtual bool Logout(IClientAPI client)
3809 { 3809 {
3810 m_log.Info("[CLIENT]: Got a logout request"); 3810 m_log.InfoFormat("[CLIENT]: Got a logout request for {0} in {1}", Name, Scene.RegionInfo.RegionName);
3811 3811
3812 handlerLogout = OnLogout; 3812 handlerLogout = OnLogout;
3813 3813
@@ -4419,8 +4419,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP
4419 4419
4420 if (handlerRequestWearables != null) 4420 if (handlerRequestWearables != null)
4421 { 4421 {
4422 m_log.DebugFormat("[APPEARANCE]: Wearables requested by {0}", Name);
4423
4424 handlerRequestWearables(); 4422 handlerRequestWearables();
4425 } 4423 }
4426 4424