You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by jg...@apache.org on 2012/08/20 21:21:28 UTC

svn commit: r1375171 - /activemq/activemq-dotnet/Apache.NMS.Stomp/branches/1.5.x/src/main/csharp/Connection.cs

Author: jgomes
Date: Mon Aug 20 19:21:28 2012
New Revision: 1375171

URL: http://svn.apache.org/viewvc?rev=1375171&view=rev
Log:
Fix call to ErrorFormat().

Modified:
    activemq/activemq-dotnet/Apache.NMS.Stomp/branches/1.5.x/src/main/csharp/Connection.cs

Modified: activemq/activemq-dotnet/Apache.NMS.Stomp/branches/1.5.x/src/main/csharp/Connection.cs
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.Stomp/branches/1.5.x/src/main/csharp/Connection.cs?rev=1375171&r1=1375170&r2=1375171&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.Stomp/branches/1.5.x/src/main/csharp/Connection.cs (original)
+++ activemq/activemq-dotnet/Apache.NMS.Stomp/branches/1.5.x/src/main/csharp/Connection.cs Mon Aug 20 19:21:28 2012
@@ -682,7 +682,7 @@ namespace Apache.NMS.Stomp
                 }
             }
 
-            Tracer.Error("No such consumer active: {0}.  Removing...", dispatch.ConsumerId);
+            Tracer.ErrorFormat("No such consumer active: {0}.  Removing...", dispatch.ConsumerId);
             RemoveInfo info  = new RemoveInfo();
             info.ObjectId = dispatch.ConsumerId;
             transport.Oneway(info);