Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 25395 invoked from network); 27 Oct 2009 14:26:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 27 Oct 2009 14:26:59 -0000 Received: (qmail 25142 invoked by uid 500); 27 Oct 2009 14:26:59 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 25097 invoked by uid 500); 27 Oct 2009 14:26:59 -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 25064 invoked by uid 99); 27 Oct 2009 14:26:59 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Oct 2009 14:26:59 +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, 27 Oct 2009 14:26:56 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6AB8F238885B; Tue, 27 Oct 2009 14:26:35 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r830200 - /activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/MessageConsumer.cs Date: Tue, 27 Oct 2009 14:26:35 -0000 To: commits@activemq.apache.org From: tabish@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091027142635.6AB8F238885B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tabish Date: Tue Oct 27 14:26:34 2009 New Revision: 830200 URL: http://svn.apache.org/viewvc?rev=830200&view=rev Log: Removing some uneeded trace statements Modified: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/MessageConsumer.cs Modified: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/MessageConsumer.cs URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/MessageConsumer.cs?rev=830200&r1=830199&r2=830200&view=diff ============================================================================== --- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/MessageConsumer.cs (original) +++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/MessageConsumer.cs Tue Oct 27 14:26:34 2009 @@ -172,13 +172,9 @@ { return null; } - - Tracer.Debug("Receive got new MessageDispatch: " + dispatch); BeforeMessageIsConsumed(dispatch); AfterMessageIsConsumed(dispatch, false); - - Tracer.Debug("Creating new message and returning."); return CreateActiveMQMessage(dispatch); }