Navigation Menu

Skip to content

Commit

Permalink
Fix log messages argument formatting. It starts with ZERO.
Browse files Browse the repository at this point in the history
  • Loading branch information
Francisco Borges committed Nov 20, 2012
1 parent d8992b1 commit 07addc0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -623,7 +623,7 @@ public interface HornetQClientLogger extends BasicLogger
void bridgeNotificationOnGroupStopped(@Cause Exception e);

@LogMessage(level = Logger.Level.WARN)
@Message(id = 212141, value = "Connection failed with failedOver={1}", format = Message.Format.MESSAGE_FORMAT)
@Message(id = 212141, value = "Connection failed with failedOver={0}", format = Message.Format.MESSAGE_FORMAT)
void bridgeConnectionFailed(@Cause Exception e, Boolean failedOver);

@LogMessage(level = Logger.Level.WARN)
Expand Down
Expand Up @@ -677,7 +677,7 @@ public interface HornetQServerLogger extends BasicLogger
void bridgeUnableToSendMessage(@Cause Exception e, MessageReference ref);

@LogMessage(level = Logger.Level.WARN)
@Message(id = 222141, value = "Connection failed with failedOver={1}", format = Message.Format.MESSAGE_FORMAT)
@Message(id = 222141, value = "Connection failed with failedOver={0}", format = Message.Format.MESSAGE_FORMAT)
void bridgeConnectionFailed(@Cause Exception e, Boolean failedOver);

@LogMessage(level = Logger.Level.WARN)
Expand Down

0 comments on commit 07addc0

Please sign in to comment.