Skip to content

Commit

Permalink
Fix call to ErrorFormat().
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Gomes committed Aug 20, 2012
1 parent fea9428 commit d650366
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/csharp/Connection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ protected void DispatchMessage(MessageDispatch dispatch)
}
}

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);
Expand Down

0 comments on commit d650366

Please sign in to comment.