diff options
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index b2291bc..6839896 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -738,10 +738,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
738 | StatsManager.SimExtraStats.AddAbnormalClientThreadTermination(); | 738 | StatsManager.SimExtraStats.AddAbnormalClientThreadTermination(); |
739 | 739 | ||
740 | // Don't let a failure in an individual client thread crash the whole sim. | 740 | // Don't let a failure in an individual client thread crash the whole sim. |
741 | m_log.ErrorFormat("[CLIENT]: Client thread for {0} {1} crashed. Logging them out. Exception {2}", Name, AgentId, e); | 741 | m_log.ErrorFormat("[CLIENT]: Client thread for {0} {1} crashed. Logging them out. Exception {2}", Name, AgentId, e); |
742 | 742 | ||
743 | try | 743 | try |
744 | { | 744 | { |
745 | // Make an attempt to alert the user that their session has crashed | 745 | // Make an attempt to alert the user that their session has crashed |
746 | AgentAlertMessagePacket packet | 746 | AgentAlertMessagePacket packet |
747 | = BuildAgentAlertPacket( | 747 | = BuildAgentAlertPacket( |
@@ -758,10 +758,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
758 | catch (Exception e2) | 758 | catch (Exception e2) |
759 | { | 759 | { |
760 | if (e2 is ThreadAbortException) | 760 | if (e2 is ThreadAbortException) |
761 | throw e2; | 761 | throw e2; |
762 | 762 | ||
763 | m_log.ErrorFormat("[CLIENT]: Further exception thrown on forced session logout. {0}", e2); | 763 | m_log.ErrorFormat("[CLIENT]: Further exception thrown on forced session logout. {0}", e2); |
764 | } | 764 | } |
765 | } | 765 | } |
766 | } | 766 | } |
767 | 767 | ||