Examples of FormattingTuple


Examples of org.slf4j.helpers.FormattingTuple

   * @param arg
   *          the argument
   */
  public void trace(String format, Object arg) {
    if (log.isDebugEnabled()) {
      FormattingTuple ft = MessageFormatter.format(format, arg);
      log.trace(ft.getMessage(), ft.getThrowable());
    }
  }
View Full Code Here

Examples of org.slf4j.helpers.FormattingTuple

   * @param arg2
   *          the second argument
   */
  public void trace(String format, Object arg1, Object arg2) {
    if (log.isDebugEnabled()) {
      FormattingTuple ft = MessageFormatter.format(format, arg1, arg2);
      log.trace(ft.getMessage(), ft.getThrowable());
    }
  }
View Full Code Here

Examples of org.slf4j.helpers.FormattingTuple

   * @param format the format string
   * @param argArray an array of arguments
   */
  public void trace(String format, Object[] argArray) {
    if (log.isDebugEnabled()) {
      FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray);
      log.trace(ft.getMessage(), ft.getThrowable());
    }
  }
View Full Code Here

Examples of org.slf4j.helpers.FormattingTuple

   * @param arg
   *          the argument
   */
  public void debug(String format, Object arg) {
    if (log.isDebugEnabled()) {
      FormattingTuple ft = MessageFormatter.format(format, arg);
      log.debug(ft.getMessage(), ft.getThrowable());
    }
  }
View Full Code Here

Examples of org.slf4j.helpers.FormattingTuple

   * @param arg2
   *          the second argument
   */
  public void debug(String format, Object arg1, Object arg2) {
    if (log.isDebugEnabled()) {
      FormattingTuple ft = MessageFormatter.format(format, arg1, arg2);
      log.debug(ft.getMessage(), ft.getThrowable());
    }
  }
View Full Code Here

Examples of org.slf4j.helpers.FormattingTuple

   * @param format the format string
   * @param argArray an array of arguments
   */
  public void debug(String format, Object[] argArray) {
    if (log.isDebugEnabled()) {
      FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray);
      log.debug(ft.getMessage(), ft.getThrowable());
    }
  }
View Full Code Here

Examples of org.slf4j.helpers.FormattingTuple

   *          the argument
   */

  public void info(String format, Object arg) {
    if (log.isInfoEnabled()) {
      FormattingTuple ft = MessageFormatter.format(format, arg);
      log.info(ft.getMessage(), ft.getThrowable());
    }
  }
View Full Code Here

Examples of org.slf4j.helpers.FormattingTuple

   *          the second argument
   */
  public void info(String format, Object arg1, Object arg2) {
    if (log.isInfoEnabled()) {

      FormattingTuple ft = MessageFormatter.format(format, arg1, arg2);
      log.info(ft.getMessage(), ft.getThrowable());
    }
  }
View Full Code Here

Examples of org.slf4j.helpers.FormattingTuple

   * @param format the format string
   * @param argArray an array of arguments
   */
  public void info(String format, Object[] argArray) {
    if (log.isInfoEnabled()) {
      FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray);
      log.info(ft.getMessage(), ft.getThrowable());
    }
  }
View Full Code Here

Examples of org.slf4j.helpers.FormattingTuple

   * @param arg
   *          the argument
   */
  public void warn(String format, Object arg) {
    if (log.isWarnEnabled()) {
      FormattingTuple ft = MessageFormatter.format(format, arg);
      log.warn(ft.getMessage(), ft.getThrowable());
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.