Author: rupertlssmith
Date: Thu Jan 24 08:34:10 2008
New Revision: 614919

URL: http://svn.apache.org/viewvc?rev=614919&view=rev
Log:
Qpid-727, Improved trace level logging.

Modified:
    
incubator/qpid/branches/M2.1/dotnet/Qpid.Client.Transport.Socket.Blocking/ByteChannel.cs
    
incubator/qpid/branches/M2.1/dotnet/Qpid.Client/Client/Transport/AmqpChannel.cs
    
incubator/qpid/branches/M2.1/dotnet/Qpid.Client/Client/Transport/ProtocolDecoderOutput.cs
    
incubator/qpid/branches/M2.1/dotnet/Qpid.Client/Client/Transport/Socket/Blocking/ByteChannel.cs

Modified: 
incubator/qpid/branches/M2.1/dotnet/Qpid.Client.Transport.Socket.Blocking/ByteChannel.cs
URL: 
http://svn.apache.org/viewvc/incubator/qpid/branches/M2.1/dotnet/Qpid.Client.Transport.Socket.Blocking/ByteChannel.cs?rev=614919&r1=614918&r2=614919&view=diff
==============================================================================
--- 
incubator/qpid/branches/M2.1/dotnet/Qpid.Client.Transport.Socket.Blocking/ByteChannel.cs
 (original)
+++ 
incubator/qpid/branches/M2.1/dotnet/Qpid.Client.Transport.Socket.Blocking/ByteChannel.cs
 Thu Jan 24 08:34:10 2008
@@ -27,7 +27,7 @@
     class ByteChannel : IByteChannel
     {
         // Warning: don't use this log for regular logging.
-        private static readonly ILog _ioTraceLog = 
LogManager.GetLogger("Qpid.Client.ByteChannel.Tracing");
+        private static readonly ILog _ioTraceLog = 
LogManager.GetLogger("TRACE.Qpid.Client.ByteChannel");
 
         BlockingSocketProcessor processor;
         

Modified: 
incubator/qpid/branches/M2.1/dotnet/Qpid.Client/Client/Transport/AmqpChannel.cs
URL: 
http://svn.apache.org/viewvc/incubator/qpid/branches/M2.1/dotnet/Qpid.Client/Client/Transport/AmqpChannel.cs?rev=614919&r1=614918&r2=614919&view=diff
==============================================================================
--- 
incubator/qpid/branches/M2.1/dotnet/Qpid.Client/Client/Transport/AmqpChannel.cs 
(original)
+++ 
incubator/qpid/branches/M2.1/dotnet/Qpid.Client/Client/Transport/AmqpChannel.cs 
Thu Jan 24 08:34:10 2008
@@ -31,7 +31,7 @@
     public class AmqpChannel : IProtocolChannel
     {
         // Warning: don't use this log for regular logging.
-        static readonly ILog _protocolTraceLog = 
LogManager.GetLogger("Qpid.Client.ProtocolChannel.Tracing");
+        static readonly ILog _protocolTraceLog = 
LogManager.GetLogger("TRACE.Qpid.Client.ProtocolChannel");
         
         IByteChannel _byteChannel;
         IProtocolEncoder _encoder;

Modified: 
incubator/qpid/branches/M2.1/dotnet/Qpid.Client/Client/Transport/ProtocolDecoderOutput.cs
URL: 
http://svn.apache.org/viewvc/incubator/qpid/branches/M2.1/dotnet/Qpid.Client/Client/Transport/ProtocolDecoderOutput.cs?rev=614919&r1=614918&r2=614919&view=diff
==============================================================================
--- 
incubator/qpid/branches/M2.1/dotnet/Qpid.Client/Client/Transport/ProtocolDecoderOutput.cs
 (original)
+++ 
incubator/qpid/branches/M2.1/dotnet/Qpid.Client/Client/Transport/ProtocolDecoderOutput.cs
 Thu Jan 24 08:34:10 2008
@@ -35,7 +35,7 @@
    internal class ProtocolDecoderOutput : IProtocolDecoderOutput
    {
       private IProtocolListener _protocolListener;
-      static readonly ILog _protocolTraceLog = 
LogManager.GetLogger("Qpid.Client.ProtocolChannel.Tracing");
+      static readonly ILog _protocolTraceLog = 
LogManager.GetLogger("TRACE.Qpid.Client.ProtocolChannel");
 
       public ProtocolDecoderOutput(IProtocolListener protocolListener)
       {

Modified: 
incubator/qpid/branches/M2.1/dotnet/Qpid.Client/Client/Transport/Socket/Blocking/ByteChannel.cs
URL: 
http://svn.apache.org/viewvc/incubator/qpid/branches/M2.1/dotnet/Qpid.Client/Client/Transport/Socket/Blocking/ByteChannel.cs?rev=614919&r1=614918&r2=614919&view=diff
==============================================================================
--- 
incubator/qpid/branches/M2.1/dotnet/Qpid.Client/Client/Transport/Socket/Blocking/ByteChannel.cs
 (original)
+++ 
incubator/qpid/branches/M2.1/dotnet/Qpid.Client/Client/Transport/Socket/Blocking/ByteChannel.cs
 Thu Jan 24 08:34:10 2008
@@ -27,7 +27,7 @@
     class ByteChannel : IByteChannel
     {
         // Warning: don't use this log for regular logging.
-        private static readonly ILog _ioTraceLog = 
LogManager.GetLogger("Qpid.Client.ByteChannel.Tracing");
+        private static readonly ILog _ioTraceLog = 
LogManager.GetLogger("TRACE.Qpid.Client.ByteChannel");
 
        private IByteChannel _lowerChannel;
         


Reply via email to