亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? logger.java

?? Java開發最新的日志記錄工具slf4j的源碼
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
   * @param msg the message string to be logged
   */
  public void info(String msg);
  

  /**
   * Log a message at the INFO level according to the specified format
   * and argument.
   * 
   * <p>This form avoids superfluous object creation when the logger
   * is disabled for the INFO level. </p>
   *
   * @param format the format string 
   * @param arg  the argument
   */
  public void info(String format, Object arg);

  
  /**
   * Log a message at the INFO level according to the specified format
   * and arguments.
   * 
   * <p>This form avoids superfluous object creation when the logger
   * is disabled for the INFO level. </p>
   *
   * @param format the format string
   * @param arg1  the first argument
   * @param arg2  the second argument
   */
  public void info(String format, Object arg1, Object arg2);

  /**
   * Log a message at the INFO level according to the specified format
   * and arguments.
   * 
   * <p>This form avoids superfluous object creation when the logger
   * is disabled for the INFO level. </p>
   *
   * @param format the format string
   * @param argArray an array of arguments
   */
  public void info(String format, Object[] argArray);
  
  /**
   * Log an exception (throwable) at the INFO level with an
   * accompanying message. 
   * 
   * @param msg the message accompanying the exception
   * @param t the exception (throwable) to log 
   */
  public void info(String msg, Throwable t);

  /**
   * Similar to {@link #isInfoEnabled()} method except that the marker
   * data is also taken into consideration.
   *
   * @param marker The marker data to take into consideration
   */
  public boolean isInfoEnabled(Marker marker);
  
  /**
   * Log a message with the specific Marker at the INFO level.
   * 
   * @param marker The marker specific to this log statement
   * @param msg the message string to be logged
   */
  public void info(Marker marker, String msg);
  
  /**
   * This method is similar to {@link #info(String, Object)} method except that the 
   * marker data is also taken into consideration.
   *
   * @param marker the marker data specific to this log statement
   * @param format the format string
   * @param arg the argument
   */
  public void info(Marker marker, String format, Object arg);
  
  /**
   * This method is similar to {@link #info(String, Object, Object)}
   * method except that the marker data is also taken into
   * consideration.
   * 
   * @param marker the marker data specific to this log statement
   * @param format  the format string
   * @param arg1  the first argument
   * @param arg2  the second argument
   */
  public void info(Marker marker, String format, Object arg1, Object arg2);  
  
  
  /**
   * This method is similar to {@link #info(String, Object[])}
   * method except that the marker data is also taken into
   * consideration.
   *
   * @param marker the marker data specific to this log statement
   * @param format  the format string
   * @param argArray an array of arguments
   */
  public void info(Marker marker, String format, Object[] argArray);

  
  /**
   * This method is similar to {@link #info(String, Throwable)} method
   * except that the marker data is also taken into consideration.
   * 
   * @param marker the marker data for this log statement
   * @param msg the message accompanying the exception
   * @param t the exception (throwable) to log
   */ 
  public void info(Marker marker, String msg, Throwable t); 

  
  /**
   * Is the logger instance enabled for the WARN level?
   * @return True if this Logger is enabled for the WARN level,
   * false otherwise.
   */
  public boolean isWarnEnabled();

  /**
   * Log a message at the WARN level.
   *
   * @param msg the message string to be logged
   */
  public void warn(String msg);

 /**
   * Log a message at the WARN level according to the specified format
   * and argument.
   * 
   * <p>This form avoids superfluous object creation when the logger
   * is disabled for the WARN level. </p>
   *
   * @param format the format string 
   * @param arg  the argument
   */
  public void warn(String format, Object arg);

  
  /**
   * Log a message at the WARN level according to the specified format
   * and arguments.
   * 
   * <p>This form avoids superfluous object creation when the logger
   * is disabled for the WARN level. </p>
   *
   * @param format the format string
   * @param argArray an array of arguments
   */
  public void warn(String format, Object[] argArray);
  
  /**
   * Log a message at the WARN level according to the specified format
   * and arguments.
   * 
   * <p>This form avoids superfluous object creation when the logger
   * is disabled for the WARN level. </p>
   *
   * @param format the format string
   * @param arg1  the first argument
   * @param arg2  the second argument
   */
  public void warn(String format, Object arg1, Object arg2);
  
  /**
   * Log an exception (throwable) at the WARN level with an
   * accompanying message. 
   * 
   * @param msg the message accompanying the exception
   * @param t the exception (throwable) to log 
   */
  public void warn(String msg, Throwable t);
  

  /**
   * Similar to {@link #isWarnEnabled()} method except that the marker
   * data is also taken into consideration.
   *
   * @param marker The marker data to take into consideration
   */
  public boolean isWarnEnabled(Marker marker);
 
  /**
   * Log a message with the specific Marker at the WARN level.
   * 
   * @param marker The marker specific to this log statement
   * @param msg the message string to be logged
   */
  public void warn(Marker marker, String msg); 
  
  /**
   * This method is similar to {@link #warn(String, Object)} method except that the 
   * marker data is also taken into consideration.
   * 
   * @param marker the marker data specific to this log statement
   * @param format the format string
   * @param arg the argument
   */
  public void warn(Marker marker, String format, Object arg);
  
  /**
   * This method is similar to {@link #warn(String, Object, Object)}
   * method except that the marker data is also taken into
   * consideration.
   * 
   * @param marker the marker data specific to this log statement
   * @param format  the format string
   * @param arg1  the first argument
   * @param arg2  the second argument
   */
  public void warn(Marker marker, String format, Object arg1, Object arg2);  
  
  /**
   * This method is similar to {@link #warn(String, Object[])}
   * method except that the marker data is also taken into
   * consideration.
   *
   * @param marker the marker data specific to this log statement
   * @param format  the format string
   * @param argArray an array of arguments
   */
  public void warn(Marker marker, String format, Object[] argArray);

  
  /**
   * This method is similar to {@link #warn(String, Throwable)} method
   * except that the marker data is also taken into consideration.
   * 
   * @param marker the marker data for this log statement
   * @param msg the message accompanying the exception
   * @param t the exception (throwable) to log
   */ 
  public void warn(Marker marker, String msg, Throwable t); 
  

  /**
   * Is the logger instance enabled for the ERROR level?
   * @return True if this Logger is enabled for the ERROR level,
   * false otherwise.
   */
  public boolean isErrorEnabled();
  
  /**
   * Log a message at the ERROR level.
   *
   * @param msg the message string to be logged
   */
  public void error(String msg);
  
 /**
   * Log a message at the ERROR level according to the specified format
   * and argument.
   * 
   * <p>This form avoids superfluous object creation when the logger
   * is disabled for the ERROR level. </p>
   *
   * @param format the format string 
   * @param arg  the argument
   */
  public void error(String format, Object arg);

  /**
   * Log a message at the ERROR level according to the specified format
   * and arguments.
   * 
   * <p>This form avoids superfluous object creation when the logger
   * is disabled for the ERROR level. </p>
   *
   * @param format the format string
   * @param arg1  the first argument
   * @param arg2  the second argument
   */
  public void error(String format, Object arg1, Object arg2);

  /**
   * Log a message at the ERROR level according to the specified format
   * and arguments.
   * 
   * <p>This form avoids superfluous object creation when the logger
   * is disabled for the ERROR level. </p>
   *
   * @param format the format string
   * @param argArray an array of arguments
   */
  public void error(String format, Object[] argArray);
  
  /**
   * Log an exception (throwable) at the ERROR level with an
   * accompanying message. 
   * 
   * @param msg the message accompanying the exception
   * @param t the exception (throwable) to log
   */
  public void error(String msg, Throwable t);


  /**
   * Similar to {@link #isErrorEnabled()} method except that the
   * marker data is also taken into consideration.
   *
   * @param marker The marker data to take into consideration
   */
  public boolean isErrorEnabled(Marker marker);
  
  /**
   * Log a message with the specific Marker at the ERROR level.
   * 
   * @param marker The marker specific to this log statement
   * @param msg the message string to be logged
   */
  public void error(Marker marker, String msg); 
  
  /**
   * This method is similar to {@link #error(String, Object)} method except that the 
   * marker data is also taken into consideration.
   * 
   * @param marker the marker data specific to this log statement
   * @param format the format string
   * @param arg the argument
   */
  public void error(Marker marker, String format, Object arg);
  
  /**
   * This method is similar to {@link #error(String, Object, Object)}
   * method except that the marker data is also taken into
   * consideration.
   * 
   * @param marker the marker data specific to this log statement
   * @param format  the format string
   * @param arg1  the first argument
   * @param arg2  the second argument
   */
  public void error(Marker marker, String format, Object arg1, Object arg2);  
  
  /**
   * This method is similar to {@link #error(String, Object[])}
   * method except that the marker data is also taken into
   * consideration.
   *
   * @param marker the marker data specific to this log statement
   * @param format  the format string
   * @param argArray an array of arguments
   */
  public void error(Marker marker, String format, Object[] argArray);

  
  /**
   * This method is similar to {@link #error(String, Throwable)}
   * method except that the marker data is also taken into
   * consideration.
   * 
   * @param marker the marker data specific to this log statement
   * @param msg the message accompanying the exception
   * @param t the exception (throwable) to log
   */ 
  public void error(Marker marker, String msg, Throwable t);

}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人欧美一区二区三区1314| 久久综合五月天婷婷伊人| 亚洲日本va在线观看| av电影天堂一区二区在线观看| 日本一区二区成人在线| 色婷婷综合久久久中文字幕| 亚洲午夜视频在线| 欧美日韩免费观看一区三区| 蜜桃视频在线观看一区| 精品少妇一区二区三区在线视频| 国产麻豆成人传媒免费观看| 国产精品入口麻豆九色| 欧美主播一区二区三区美女| 日韩电影在线一区二区三区| 久久久噜噜噜久噜久久综合| 99re热视频精品| 手机精品视频在线观看| 精品国产伦一区二区三区免费 | 欧美日韩亚洲综合在线| 日本在线播放一区二区三区| 国产午夜亚洲精品理论片色戒| 91丝袜美女网| 蜜桃av一区二区在线观看| 国产精品视频线看| 欧美精品在线一区二区| 国产69精品久久久久毛片| 亚洲一区二区三区激情| 久久亚洲一区二区三区明星换脸 | 亚洲一区二区精品视频| 欧美精品一区二区三区在线 | 国产精品一级在线| 亚洲激情综合网| 亚洲精品一区二区三区福利| 色婷婷激情久久| 精品一二线国产| 一区二区成人在线视频| 国产日本欧洲亚洲| 6080午夜不卡| 不卡免费追剧大全电视剧网站| 欧美aⅴ一区二区三区视频| 亚洲婷婷综合色高清在线| 精品人伦一区二区色婷婷| 欧美综合一区二区三区| 成人精品视频一区二区三区| 毛片不卡一区二区| 亚洲国产美女搞黄色| 国产欧美一区二区三区在线看蜜臀| 欧美日韩dvd在线观看| 91丨porny丨户外露出| 国产一区二区免费视频| 蜜臀av在线播放一区二区三区| 亚洲精品国产视频| 中文一区在线播放| 国产午夜亚洲精品理论片色戒| 91精品国产综合久久香蕉麻豆| 色8久久精品久久久久久蜜| 成人avav影音| 高清成人在线观看| 韩国女主播成人在线| 青青草97国产精品免费观看无弹窗版| 一区二区三区蜜桃| 亚洲精品视频在线看| 中文子幕无线码一区tr| 欧美国产精品v| 久久九九久精品国产免费直播| 日韩欧美国产一区二区三区 | 欧美激情在线一区二区三区| 欧美大白屁股肥臀xxxxxx| 69堂国产成人免费视频| 欧美日韩免费一区二区三区视频| 欧美怡红院视频| 欧美在线999| 欧美日韩国产三级| 欧美男女性生活在线直播观看| 欧美色电影在线| 欧美制服丝袜第一页| 欧美日韩在线播| 欧美人与禽zozo性伦| 制服丝袜亚洲精品中文字幕| 欧美一级电影网站| 日韩免费电影一区| 久久久久久久久免费| 26uuu国产日韩综合| 久久久亚洲午夜电影| 国产三级久久久| 国产精品乱人伦中文| 自拍偷拍亚洲激情| 亚洲国产乱码最新视频| 视频一区视频二区中文字幕| 日韩精品免费专区| 国产一区美女在线| www.爱久久.com| 色综合一区二区三区| 欧美日韩精品欧美日韩精品一综合| 91精品国产综合久久福利| 亚洲精品在线观| 中文字幕中文字幕中文字幕亚洲无线| 亚洲欧美日本韩国| 日本成人在线网站| 国产福利精品导航| 在线观看国产91| 日韩一区二区三区电影在线观看 | 日本少妇一区二区| 国产一区不卡在线| 色94色欧美sute亚洲线路二| 制服丝袜中文字幕一区| 欧美激情中文字幕| 亚洲高清在线视频| 国产精品18久久久久| 色哟哟一区二区在线观看 | 欧美另类z0zxhd电影| 2024国产精品| 一区二区在线观看视频在线观看| 日产欧产美韩系列久久99| 成人av在线影院| 日韩一区二区三区在线视频| 国产精品久久二区二区| 日韩和的一区二区| 99久久婷婷国产综合精品电影| 欧美男男青年gay1069videost| 国产欧美综合在线| 天堂av在线一区| 波多野结衣精品在线| 欧美xxxxxxxxx| 亚洲黄色在线视频| 国产精品伊人色| 91精品在线观看入口| 136国产福利精品导航| 久久爱www久久做| 欧美午夜精品久久久久久超碰 | 678五月天丁香亚洲综合网| 国产精品久久久久aaaa樱花| 另类小说综合欧美亚洲| 欧美体内she精高潮| 中文字幕中文乱码欧美一区二区| 麻豆视频观看网址久久| 欧美无砖砖区免费| 综合久久久久久| 国产高清在线精品| 日韩一区二区三区电影| 亚洲国产精品久久人人爱| 99久久er热在这里只有精品15| ww亚洲ww在线观看国产| 青青草国产成人av片免费| 欧美性猛交一区二区三区精品| 国产精品国产三级国产| 国产成人无遮挡在线视频| 精品动漫一区二区三区在线观看| 五月激情六月综合| 欧美亚洲图片小说| 一区二区在线看| 色天使色偷偷av一区二区| 亚洲色欲色欲www在线观看| 暴力调教一区二区三区| 国产视频不卡一区| 国产成人精品影视| 国产午夜精品久久久久久免费视| 激情伊人五月天久久综合| 欧美一二三四在线| 久久精品国产第一区二区三区| 51精品久久久久久久蜜臀| 日韩电影在线观看网站| 69精品人人人人| 蜜臀久久99精品久久久画质超高清 | 欧美v亚洲v综合ⅴ国产v| 日本怡春院一区二区| 日韩一区二区三区四区| 麻豆视频一区二区| 26uuu色噜噜精品一区二区| 国产精品久久福利| 天堂精品中文字幕在线| 欧美日本国产视频| 蜜芽一区二区三区| 精品国产精品网麻豆系列| 国内成+人亚洲+欧美+综合在线| 日韩精品在线一区二区| 久久er99热精品一区二区| 久久精品无码一区二区三区| 成人夜色视频网站在线观看| 中文字幕中文字幕一区| 色88888久久久久久影院按摩| 亚洲午夜激情av| 欧美一区二区三区在| 国产一区二区三区日韩| 亚洲欧洲在线观看av| 日本精品一区二区三区四区的功能| 亚洲成人综合网站| 日韩免费视频一区二区| 岛国精品在线观看| 亚洲人吸女人奶水| 91麻豆精品久久久久蜜臀| 国产综合久久久久影院| 亚洲同性同志一二三专区| 欧美日韩一二三区| 国模少妇一区二区三区| 国产精品美女一区二区三区| 欧美性猛片xxxx免费看久爱| 久久丁香综合五月国产三级网站| 国产精品美女久久久久久久久 | 国产盗摄女厕一区二区三区|