Issue Type: Bug Bug
Affects Versions: 1.0.9
Assignee: Logback dev list
Created: 13/Mar/13 12:46 AM
Description: usage:
log.warn("abc: ", args, exception);
args are ignored.

See following code in LoggingEvent for more information:

  public String getFormattedMessage() {
    if (formattedMessage != null) { //here formattedMessage is "abc "
      return formattedMessage; // here it returns with out appending the args
    }
    if (argumentArray != null) {
      formattedMessage = MessageFormatter.arrayFormat(message, argumentArray)
              .getMessage();
    } else {
      formattedMessage = message;
    }

    return formattedMessage;
  }
Project: logback
Priority: Major Major
Reporter: Xiaohan
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira