aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-02-19 21:18:03 +0000
committerJustin Clark-Casey (justincc)2010-02-19 21:18:03 +0000
commit214b1351fbd7287a70e465a4dd83668b1d2c7044 (patch)
tree2c9dab159fb9e5edcb96902888d8b35356df9711 /OpenSim/Region/ClientStack/LindenUDP
parentChange handling of the SYSTEMIP constant to be more sane. (diff)
downloadopensim-SC_OLD-214b1351fbd7287a70e465a4dd83668b1d2c7044.zip
opensim-SC_OLD-214b1351fbd7287a70e465a4dd83668b1d2c7044.tar.gz
opensim-SC_OLD-214b1351fbd7287a70e465a4dd83668b1d2c7044.tar.bz2
opensim-SC_OLD-214b1351fbd7287a70e465a4dd83668b1d2c7044.tar.xz
minor: Make FlotsamAssetCache default loglevel 0 to match that given in bin/config-include/FlotsamCache.ini.example
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index 0b90b55..2ca2657 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -11025,10 +11025,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP
11025 /// <param name="Pack">OpenMetaverse.packet</param> 11025 /// <param name="Pack">OpenMetaverse.packet</param>
11026 public void ProcessInPacket(Packet Pack) 11026 public void ProcessInPacket(Packet Pack)
11027 { 11027 {
11028// m_log.DebugFormat("[CLIENT]: Packet IN {0}", Pack);
11029
11028 if (!ProcessPacketMethod(Pack)) 11030 if (!ProcessPacketMethod(Pack))
11029 {
11030 m_log.Warn("[CLIENT]: unhandled packet " + Pack); 11031 m_log.Warn("[CLIENT]: unhandled packet " + Pack);
11031 }
11032 11032
11033 PacketPool.Instance.ReturnPacket(Pack); 11033 PacketPool.Instance.ReturnPacket(Pack);
11034 } 11034 }