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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? logger.java

?? Java開發(fā)最新的日志記錄工具slf4j的源碼
?? JAVA
?? 第 1 頁 / 共 2 頁
字號(hào):
/* 
 * Copyright (c) 2004-2008 QOS.ch
 * All rights reserved.
 * 
 * Permission is hereby granted, free  of charge, to any person obtaining
 * a  copy  of this  software  and  associated  documentation files  (the
 * "Software"), to  deal in  the Software without  restriction, including
 * without limitation  the rights to  use, copy, modify,  merge, publish,
 * distribute,  sublicense, and/or sell  copies of  the Software,  and to
 * permit persons to whom the Software  is furnished to do so, subject to
 * the following conditions:
 * 
 * The  above  copyright  notice  and  this permission  notice  shall  be
 * included in all copies or substantial portions of the Software.
 * 
 * THE  SOFTWARE IS  PROVIDED  "AS  IS", WITHOUT  WARRANTY  OF ANY  KIND,
 * EXPRESS OR  IMPLIED, INCLUDING  BUT NOT LIMITED  TO THE  WARRANTIES OF
 * MERCHANTABILITY,    FITNESS    FOR    A   PARTICULAR    PURPOSE    AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 * OF CONTRACT, TORT OR OTHERWISE,  ARISING FROM, OUT OF OR IN CONNECTION
 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */


package org.slf4j;

/**
 * The org.slf4j.Logger interface is the main user entry point of SLF4J API. 
 * It is expected that logging takes place through concrete implementations 
 * of this interface.
 *
 * <h3>Typical usage pattern:</h3>
 * <pre>
 * import org.slf4j.Logger;
 * import org.slf4j.LoggerFactory;
 * 
 * public class Wombat {
 *
 *   <span style="color:green">final static Logger logger = LoggerFactory.getLogger(Wombat.class);</span>
 *   Integer t;
 *   Integer oldT;
 *
 *   public void setTemperature(Integer temperature) {
 *     oldT = t;        
 *     t = temperature;
 *     <span style="color:green">logger.debug("Temperature set to {}. Old temperature was {}.", t, oldT);</span>
 *     if(temperature.intValue() > 50) {
 *       <span style="color:green">logger.info("Temperature has risen above 50 degrees.");</span>
 *     }
 *   }
 * }
 </pre>


 
 * @author Ceki G&uuml;lc&uuml;
 */
public interface Logger {


  /**
   * Case insensitive String constant used to retrieve the name of the root logger.
   * @since 1.3
   */
  final public String ROOT_LOGGER_NAME = "ROOT";
  
  /**
   * Return the name of this <code>Logger</code> instance.
   */
  public String getName();

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

  /**
   * Log a message at the TRACE level.
   *
   * @param msg the message string to be logged
   * @since 1.4
   */
  public void trace(String msg);

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


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

  /**
   * Log a message at the TRACE level according to the specified format
   * and arguments.
   * 
   * <p>This form avoids superfluous object creation when the logger
   * is disabled for the TRACE level. </p>
   *
   * @param format the format string
   * @param argArray an array of arguments
   * 
   * @since 1.4
   */
  public void trace(String format, Object[] argArray);
  
  /**
   * Log an exception (throwable) at the TRACE level with an
   * accompanying message. 
   * 
   * @param msg the message accompanying the exception
   * @param t the exception (throwable) to log
   * 
   * @since 1.4
   */ 
  public void trace(String msg, Throwable t);
 
  
  /**
   * Similar to {@link #isTraceEnabled()} method except that the
   * marker data is also taken into account.
   * 
   * @param marker The marker data to take into consideration
   * 
   * @since 1.4
   */
  public boolean isTraceEnabled(Marker marker);
  
  /**
   * Log a message with the specific Marker at the TRACE level.
   * 
   * @param marker the marker data specific to this log statement
   * @param msg the message string to be logged
   * 
   * @since 1.4
   */
  public void trace(Marker marker, String msg);
  
  /**
   * This method is similar to {@link #trace(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
   * 
   * @since 1.4
   */
  public void trace(Marker marker, String format, Object arg);
 
 
  /**
   * This method is similar to {@link #trace(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
   * 
   * @since 1.4
   */
  public void trace(Marker marker, String format, Object arg1, Object arg2);

  /**
   * This method is similar to {@link #trace(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
   * 
   * @since 1.4
   */
  public void trace(Marker marker, String format, Object[] argArray);

  
  /**
   * This method is similar to {@link #trace(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
   * 
   * @since 1.4
   */ 
  public void trace(Marker marker, String msg, Throwable t);

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


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

  /**
   * Log a message at the DEBUG level according to the specified format
   * and arguments.
   * 
   * <p>This form avoids superfluous object creation when the logger
   * is disabled for the DEBUG level. </p>
   *
   * @param format the format string
   * @param argArray an array of arguments
   */
  public void debug(String format, Object[] argArray);
  
  /**
   * Log an exception (throwable) at the DEBUG level with an
   * accompanying message. 
   * 
   * @param msg the message accompanying the exception
   * @param t the exception (throwable) to log
   */ 
  public void debug(String msg, Throwable t);
 
  
  /**
   * Similar to {@link #isDebugEnabled()} method except that the
   * marker data is also taken into account.
   * 
   * @param marker The marker data to take into consideration
   */
  public boolean isDebugEnabled(Marker marker);
  
  /**
   * Log a message with the specific Marker at the DEBUG level.
   * 
   * @param marker the marker data specific to this log statement
   * @param msg the message string to be logged
   */
  public void debug(Marker marker, String msg);
  
  /**
   * This method is similar to {@link #debug(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 debug(Marker marker, String format, Object arg);
 
 
  /**
   * This method is similar to {@link #debug(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 debug(Marker marker, String format, Object arg1, Object arg2);

  /**
   * This method is similar to {@link #debug(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 debug(Marker marker, String format, Object[] argArray);

  
  /**
   * This method is similar to {@link #debug(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 debug(Marker marker, String msg, Throwable t);
  
  
  /**
   * Is the logger instance enabled for the INFO level?
   * @return True if this Logger is enabled for the INFO level,
   * false otherwise.
   */
  public boolean isInfoEnabled();

  
  /**
   * Log a message at the INFO level.
   *

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
麻豆免费看一区二区三区| 欧美videossexotv100| 99麻豆久久久国产精品免费| 国产精品538一区二区在线| 国产一区 二区 三区一级| 国产毛片精品国产一区二区三区| 久久草av在线| 国产高清视频一区| 国产v综合v亚洲欧| 成人app网站| 91精彩视频在线| 91极品视觉盛宴| 欧美高清视频一二三区| 日韩美女天天操| 久久麻豆一区二区| 国产精品美日韩| 一卡二卡欧美日韩| 婷婷国产v国产偷v亚洲高清| 美国精品在线观看| 国产成人综合网| 日本韩国欧美一区二区三区| 91.成人天堂一区| 精品国产一区二区精华| 国产精品狼人久久影院观看方式| 亚洲人成小说网站色在线| 午夜精品久久久久久久久| 久久狠狠亚洲综合| 高清不卡一区二区在线| 一本到不卡免费一区二区| 欧美精品aⅴ在线视频| 精品卡一卡二卡三卡四在线| 亚洲国产精品成人综合色在线婷婷| 亚洲伦在线观看| 日产欧产美韩系列久久99| 激情成人综合网| 91在线视频观看| 制服丝袜成人动漫| 国产精品久久久久一区| 亚洲成人在线观看视频| 国产精品中文有码| 精品婷婷伊人一区三区三| 日韩一区二区三区电影在线观看 | 国产精品1024| 色一情一伦一子一伦一区| 欧美久久一二三四区| 国产日产亚洲精品系列| 亚洲第一电影网| 国产69精品久久久久毛片 | 一区二区三区蜜桃网| 另类综合日韩欧美亚洲| 91麻豆精品秘密| 精品捆绑美女sm三区| 亚洲美女免费视频| 国产美女精品在线| 欧美日韩亚洲国产综合| 国产精品水嫩水嫩| 日韩不卡一区二区| 97久久超碰国产精品| 日韩一区二区在线看片| 亚洲欧洲在线观看av| 男人的天堂久久精品| 91视频观看视频| 久久综合九色欧美综合狠狠 | 国产成人亚洲综合a∨猫咪| 欧美另类一区二区三区| 中文字幕一区不卡| 韩国精品主播一区二区在线观看| 在线一区二区三区做爰视频网站| 国产偷国产偷亚洲高清人白洁| 午夜天堂影视香蕉久久| www.av精品| 欧美韩国日本综合| 日韩和欧美一区二区三区| 色婷婷久久99综合精品jk白丝| 久久精品一区二区三区四区| 免费成人在线观看视频| 欧美影片第一页| 亚洲天堂精品在线观看| 粗大黑人巨茎大战欧美成人| 欧美精品一区二区三区一线天视频| 亚洲一区在线观看视频| aaa欧美大片| 国产偷v国产偷v亚洲高清| 激情欧美一区二区三区在线观看| 欧美精品自拍偷拍动漫精品| 亚洲妇女屁股眼交7| 91美女片黄在线观看91美女| 国产精品久久久久久久久免费桃花| 国产精品 欧美精品| www成人在线观看| 麻豆精品视频在线观看免费| 欧美一区二区女人| 日韩综合小视频| 欧美日韩视频不卡| 一区二区三区欧美在线观看| 91亚洲精品一区二区乱码| 亚洲欧洲无码一区二区三区| 成人一区二区三区中文字幕| 国产精品三级视频| 风间由美一区二区av101| 欧美激情在线看| 国产999精品久久久久久绿帽| 国产亚洲综合色| 国产不卡视频在线播放| 国产精品免费观看视频| 成人sese在线| 亚洲免费观看在线视频| 欧美亚洲动漫精品| 视频一区二区三区入口| 制服.丝袜.亚洲.另类.中文| 久久电影国产免费久久电影| 精品少妇一区二区三区日产乱码| 老司机免费视频一区二区三区| 精品成人一区二区三区| 狠狠色伊人亚洲综合成人| 国产无遮挡一区二区三区毛片日本| 国产99久久久精品| 国产精品福利电影一区二区三区四区| 不卡一卡二卡三乱码免费网站| 1024精品合集| 欧美三级视频在线| 日韩和的一区二区| 久久久久久影视| 99re免费视频精品全部| 亚洲福利视频一区| 精品入口麻豆88视频| 国产成人免费av在线| 国产精品成人一区二区三区夜夜夜| 97久久超碰精品国产| 天天av天天翘天天综合网| 日韩欧美一级精品久久| 国产乱理伦片在线观看夜一区| 国产精品五月天| 97超碰欧美中文字幕| 亚洲国产精品人人做人人爽| 欧美一区二区三区日韩视频| 国产剧情av麻豆香蕉精品| 亚洲三级在线免费| 欧美日韩激情一区二区三区| 国产精品99久久久久久似苏梦涵| 亚洲欧美日韩一区二区三区在线观看| 欧美精品一卡二卡| 国产成人午夜精品影院观看视频| 亚洲精品久久久蜜桃| 精品免费视频一区二区| 99久久99久久精品国产片果冻| 视频在线观看一区| 国产精品另类一区| 欧美剧情片在线观看| 国产91在线看| 首页综合国产亚洲丝袜| 中文字幕国产一区二区| 欧美久久久久久久久久| 成人性生交大合| 天天操天天干天天综合网| 国产精品免费免费| 日韩视频一区二区三区在线播放| 99这里只有精品| 九色综合狠狠综合久久| 艳妇臀荡乳欲伦亚洲一区| 久久久久免费观看| 欧美精品xxxxbbbb| 91免费国产视频网站| 国内久久精品视频| 亚洲bdsm女犯bdsm网站| 1区2区3区国产精品| 久久午夜色播影院免费高清 | 一区二区三区影院| 久久免费偷拍视频| 欧美精品v国产精品v日韩精品 | 欧美中文字幕不卡| 国产成人一级电影| 免费看欧美美女黄的网站| 18涩涩午夜精品.www| 久久一夜天堂av一区二区三区| 69堂亚洲精品首页| 色欧美乱欧美15图片| 国产成人免费网站| 精品一区精品二区高清| 肉丝袜脚交视频一区二区| 一区二区三区四区在线播放| 国产精品黄色在线观看| 久久久久国产一区二区三区四区| 91精品国产91热久久久做人人| 欧美三级韩国三级日本一级| 一本大道av伊人久久综合| 成人美女视频在线看| 国产高清在线精品| 国精产品一区一区三区mba桃花| 日本中文字幕一区| 亚洲成精国产精品女| 亚洲免费看黄网站| 亚洲另类春色校园小说| 亚洲色图视频网站| 国产精品美女www爽爽爽| 国产婷婷精品av在线| 久久综合色一综合色88| 欧美大胆人体bbbb| 精品国产一区二区亚洲人成毛片| 日韩欧美国产麻豆|