You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2010/07/08 20:25:04 UTC

svn commit: r961864 - /activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Transport/Failover/FailoverTransport.cs

Author: tabish
Date: Thu Jul  8 18:25:04 2010
New Revision: 961864

URL: http://svn.apache.org/viewvc?rev=961864&view=rev
Log:
* FailoverTransport.cs: Remove an trace statement that no longer needed.

Modified:
    activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Transport/Failover/FailoverTransport.cs

Modified: activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Transport/Failover/FailoverTransport.cs
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Transport/Failover/FailoverTransport.cs?rev=961864&r1=961863&r2=961864&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Transport/Failover/FailoverTransport.cs (original)
+++ activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Transport/Failover/FailoverTransport.cs Thu Jul  8 18:25:04 2010
@@ -459,8 +459,6 @@ namespace Apache.NMS.Stomp.Transport.Fai
                         bool timedout = false;
                         while(transport == null && !disposed && connectionFailure == null)
                         {
-                            Tracer.Info("Waiting for transport to reconnect.");
-
                             int elapsed = (int)(DateTime.Now - start).TotalMilliseconds;
                             if( this.timeout > 0 && elapsed > timeout )
                             {