diff options
| author | Rupert Smith <rupertlssmith@apache.org> | 2008-01-24 16:34:10 +0000 |
|---|---|---|
| committer | Rupert Smith <rupertlssmith@apache.org> | 2008-01-24 16:34:10 +0000 |
| commit | bba8232a45c82146020cc4f48c9a3147262120d3 (patch) | |
| tree | 7bcb072bfd0d02097f1bb28949da6ed5a9b408a0 | |
| parent | 164ca0c43d05f99b6ffc6ac47339db9297b2f652 (diff) | |
| download | qpid-python-bba8232a45c82146020cc4f48c9a3147262120d3.tar.gz | |
Qpid-727, Improved trace level logging.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@614919 13f79535-47bb-0310-9956-ffa450edef68
4 files changed, 4 insertions, 4 deletions
diff --git a/dotnet/Qpid.Client.Transport.Socket.Blocking/ByteChannel.cs b/dotnet/Qpid.Client.Transport.Socket.Blocking/ByteChannel.cs index 19da2fceb9..5f67e99838 100644 --- a/dotnet/Qpid.Client.Transport.Socket.Blocking/ByteChannel.cs +++ b/dotnet/Qpid.Client.Transport.Socket.Blocking/ByteChannel.cs @@ -27,7 +27,7 @@ namespace Apache.Qpid.Client.Transport.Socket.Blocking 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; diff --git a/dotnet/Qpid.Client/Client/Transport/AmqpChannel.cs b/dotnet/Qpid.Client/Client/Transport/AmqpChannel.cs index dc72846bbe..1e217e755b 100644 --- a/dotnet/Qpid.Client/Client/Transport/AmqpChannel.cs +++ b/dotnet/Qpid.Client/Client/Transport/AmqpChannel.cs @@ -31,7 +31,7 @@ namespace Apache.Qpid.Client.Transport 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; diff --git a/dotnet/Qpid.Client/Client/Transport/ProtocolDecoderOutput.cs b/dotnet/Qpid.Client/Client/Transport/ProtocolDecoderOutput.cs index 357aab0f45..3841c158e4 100644 --- a/dotnet/Qpid.Client/Client/Transport/ProtocolDecoderOutput.cs +++ b/dotnet/Qpid.Client/Client/Transport/ProtocolDecoderOutput.cs @@ -35,7 +35,7 @@ namespace Apache.Qpid.Client.Transport 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)
{
diff --git a/dotnet/Qpid.Client/Client/Transport/Socket/Blocking/ByteChannel.cs b/dotnet/Qpid.Client/Client/Transport/Socket/Blocking/ByteChannel.cs index 077f69541f..73575c7086 100644 --- a/dotnet/Qpid.Client/Client/Transport/Socket/Blocking/ByteChannel.cs +++ b/dotnet/Qpid.Client/Client/Transport/Socket/Blocking/ByteChannel.cs @@ -27,7 +27,7 @@ namespace Apache.Qpid.Client.Transport.Socket.Blocking 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;
|
