aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-09-13 21:52:36 +0100
committerJustin Clark-Casey (justincc)2010-09-13 21:52:36 +0100
commitfbe72e30ebc46f07da912bbeabdf252150f7effc (patch)
treec8d31c495b185f4ba068678dcdc5a27adc00a7be /OpenSim/Region
parentAdd client name to packet resend log messages to make them a bit more informa... (diff)
downloadopensim-SC_OLD-fbe72e30ebc46f07da912bbeabdf252150f7effc.zip
opensim-SC_OLD-fbe72e30ebc46f07da912bbeabdf252150f7effc.tar.gz
opensim-SC_OLD-fbe72e30ebc46f07da912bbeabdf252150f7effc.tar.bz2
opensim-SC_OLD-fbe72e30ebc46f07da912bbeabdf252150f7effc.tar.xz
Improve generic message exception logging. Quieten down complaints about unhandled GenericMessages
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index f35691a..0aa670a 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -5199,11 +5199,13 @@ namespace OpenSim.Region.ClientStack.LindenUDP
5199 } 5199 }
5200 catch (Exception e) 5200 catch (Exception e)
5201 { 5201 {
5202 m_log.Error("[GENERICMESSAGE] " + e); 5202 m_log.ErrorFormat(
5203 "[LLCLIENTVIEW]: Exeception when handling generic message {0}{1}", e.Message, e.StackTrace);
5203 } 5204 }
5204 } 5205 }
5205 } 5206 }
5206 m_log.Error("[GENERICMESSAGE] Not handling GenericMessage with method-type of: " + method); 5207
5208 //m_log.Debug("[LLCLIENTVIEW]: Not handling GenericMessage with method-type of: " + method);
5207 return false; 5209 return false;
5208 } 5210 }
5209 5211