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 2017/03/06 23:30:00 UTC

[36/50] [abbrv] activemq-nms-stomp git commit: Fix call to ErrorFormat().

Fix call to ErrorFormat().


Project: http://git-wip-us.apache.org/repos/asf/activemq-nms-stomp/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-nms-stomp/commit/a15a3fd9
Tree: http://git-wip-us.apache.org/repos/asf/activemq-nms-stomp/tree/a15a3fd9
Diff: http://git-wip-us.apache.org/repos/asf/activemq-nms-stomp/diff/a15a3fd9

Branch: refs/heads/1.5.x
Commit: a15a3fd9d6fe83a5f674e77e7e6144e247aefc67
Parents: e15675c
Author: Jim Gomes <jg...@apache.org>
Authored: Mon Aug 20 19:21:28 2012 +0000
Committer: Jim Gomes <jg...@apache.org>
Committed: Mon Aug 20 19:21:28 2012 +0000

----------------------------------------------------------------------
 src/main/csharp/Connection.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-nms-stomp/blob/a15a3fd9/src/main/csharp/Connection.cs
----------------------------------------------------------------------
diff --git a/src/main/csharp/Connection.cs b/src/main/csharp/Connection.cs
index 45e03ec..1ccb6de 100755
--- a/src/main/csharp/Connection.cs
+++ b/src/main/csharp/Connection.cs
@@ -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);