Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 75589 invoked from network); 12 Jan 2010 23:19:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 12 Jan 2010 23:19:48 -0000 Received: (qmail 58905 invoked by uid 500); 12 Jan 2010 23:19:48 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 58847 invoked by uid 500); 12 Jan 2010 23:19:48 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 58838 invoked by uid 99); 12 Jan 2010 23:19:48 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 Jan 2010 23:19:48 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 Jan 2010 23:19:46 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6B3402388901; Tue, 12 Jan 2010 23:19:25 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r898571 - /activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Commands/BaseMessage.cs Date: Tue, 12 Jan 2010 23:19:25 -0000 To: commits@activemq.apache.org From: tabish@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100112231925.6B3402388901@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tabish Date: Tue Jan 12 23:19:24 2010 New Revision: 898571 URL: http://svn.apache.org/viewvc?rev=898571&view=rev Log: Update the ToString methods in several of the commands to make the Logging more readable. Modified: activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Commands/BaseMessage.cs Modified: activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Commands/BaseMessage.cs URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Commands/BaseMessage.cs?rev=898571&r1=898570&r2=898571&view=diff ============================================================================== --- activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Commands/BaseMessage.cs (original) +++ activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Commands/BaseMessage.cs Tue Jan 12 23:19:24 2010 @@ -78,23 +78,23 @@ public override string ToString() { return GetType().Name + "[" + - "ProducerId=" + ProducerId + - "Destination=" + Destination + - "TransactionId=" + TransactionId + - "MessageId=" + MessageId + - "OriginalTransactionId=" + OriginalTransactionId + - "GroupID=" + GroupID + - "GroupSequence=" + GroupSequence + - "CorrelationId=" + CorrelationId + - "Persistent=" + Persistent + - "Expiration=" + Expiration + - "Priority=" + Priority + - "ReplyTo=" + ReplyTo + - "Timestamp=" + Timestamp + - "Type=" + Type + - "Content=" + Content + - "MarshalledProperties=" + MarshalledProperties + - "TargetConsumerId=" + TargetConsumerId + + "ProducerId=" + ProducerId + ", " + + "Destination=" + Destination + ", " + + "TransactionId=" + TransactionId + ", " + + "MessageId=" + MessageId + ", " + + "OriginalTransactionId=" + OriginalTransactionId + ", " + + "GroupID=" + GroupID + ", " + + "GroupSequence=" + GroupSequence + ", " + + "CorrelationId=" + CorrelationId + ", " + + "Persistent=" + Persistent + ", " + + "Expiration=" + Expiration + ", " + + "Priority=" + Priority + ", " + + "ReplyTo=" + ReplyTo + ", " + + "Timestamp=" + Timestamp + ", " + + "Type=" + Type + ", " + + "Content=" + Content + ", " + + "MarshalledProperties=" + MarshalledProperties + ", " + + "TargetConsumerId=" + TargetConsumerId + ", " + "RedeliveryCounter=" + RedeliveryCounter + "]"; }