aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
diff options
context:
space:
mode:
authorMelanie2010-09-13 23:35:27 +0100
committerMelanie2010-09-13 23:35:27 +0100
commitb2e50474dcc0e6c762cd3455fef73874e5ce4906 (patch)
treed0cca66cc22920d9b012e883f30c7a40ab5e05c2 /OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
parentAdd a missing parenthesis (diff)
parentComment out SOG storing debug log message (diff)
downloadopensim-SC_OLD-b2e50474dcc0e6c762cd3455fef73874e5ce4906.zip
opensim-SC_OLD-b2e50474dcc0e6c762cd3455fef73874e5ce4906.tar.gz
opensim-SC_OLD-b2e50474dcc0e6c762cd3455fef73874e5ce4906.tar.bz2
opensim-SC_OLD-b2e50474dcc0e6c762cd3455fef73874e5ce4906.tar.xz
Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs')
-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