亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
久久九九国产精品| 亚洲色图丝袜美腿| 9l国产精品久久久久麻豆| 亚洲成av人片观看| 国产精品福利影院| 精品国产露脸精彩对白| 欧美在线一区二区三区| 国产91高潮流白浆在线麻豆| 蜜桃精品视频在线观看| 一区二区三区中文免费| 国产日产亚洲精品系列| 日韩欧美激情一区| 欧美美女bb生活片| 色呦呦日韩精品| 成人h版在线观看| 精品一区二区三区在线观看| 亚洲成人一区在线| 亚洲欧洲中文日韩久久av乱码| 2020日本不卡一区二区视频| 欧美一区二区三区在线观看视频| 色94色欧美sute亚洲线路二| 成人精品国产福利| 国产精品99久久久久久久女警| 日本中文一区二区三区| 亚洲高清免费观看| 亚洲国产日韩a在线播放| 亚洲精品福利视频网站| 亚洲色图欧美偷拍| 亚洲免费观看在线观看| 中文字幕欧美一区| 亚洲欧洲日韩av| 国产精品传媒视频| 亚洲精品久久久久久国产精华液| 中文一区二区完整视频在线观看 | 国产精品自拍三区| 麻豆精品久久精品色综合| 日本怡春院一区二区| 日韩成人精品在线观看| 婷婷综合久久一区二区三区| 午夜精品福利在线| 午夜伊人狠狠久久| 秋霞午夜鲁丝一区二区老狼| 免费欧美日韩国产三级电影| 老司机精品视频一区二区三区| 奇米影视一区二区三区| 久久机这里只有精品| 国内成人免费视频| 国产成人在线观看| 本田岬高潮一区二区三区| 91视频在线观看免费| 色婷婷国产精品| 欧美日韩精品高清| 精品福利一区二区三区免费视频| 日韩三级伦理片妻子的秘密按摩| 日韩一卡二卡三卡四卡| 日韩欧美不卡一区| 国产女主播在线一区二区| 国产精品色噜噜| 一区二区三区在线免费视频| 亚洲成va人在线观看| 久久精品72免费观看| 国产精品一二三四| 一本色道综合亚洲| 欧美一区二区三区视频| 久久婷婷成人综合色| 中文字幕日本乱码精品影院| 亚洲va中文字幕| 国内精品久久久久影院一蜜桃| 成人一区二区三区| 欧美视频自拍偷拍| 精品美女一区二区| 国产精品高潮呻吟| 日韩激情一区二区| 国产69精品久久777的优势| 色婷婷国产精品| 久久综合狠狠综合久久综合88| 国产精品久久久久久久久搜平片| 五月开心婷婷久久| 成人动漫在线一区| 欧美喷水一区二区| 中文字幕av不卡| 日韩不卡一区二区| 不卡高清视频专区| 日韩欧美在线影院| 亚洲欧美另类小说| 麻豆国产91在线播放| 色综合久久久久久久久| 亚洲精品在线免费观看视频| 亚洲欧美国产77777| 狠狠狠色丁香婷婷综合激情| 色域天天综合网| 久久精品人人做人人爽人人| 午夜av电影一区| av在线一区二区| 久久久美女毛片| 丝袜亚洲另类丝袜在线| 99麻豆久久久国产精品免费 | 日韩精品福利网| 成人a免费在线看| 精品国产一区二区三区四区四 | 国产在线播精品第三| 在线观看日韩精品| 国产精品日日摸夜夜摸av| 麻豆视频一区二区| 欧美日韩一区 二区 三区 久久精品| 欧美国产欧美综合| 激情综合一区二区三区| 欧美日韩免费一区二区三区| 国产精品家庭影院| 国产a级毛片一区| 欧美精品一区二区三| 日韩高清在线观看| 欧美在线|欧美| 亚洲欧美欧美一区二区三区| 成人白浆超碰人人人人| 国产亚洲精品资源在线26u| 久久97超碰色| 欧美一区二区女人| 久久精品国产秦先生| 欧美色涩在线第一页| 一区二区三区在线观看国产| www.欧美.com| 国产精品久久午夜夜伦鲁鲁| 国产很黄免费观看久久| 337p粉嫩大胆噜噜噜噜噜91av| 麻豆免费看一区二区三区| 日韩一级免费观看| 日韩在线一区二区三区| 欧美亚洲动漫精品| 亚洲自拍偷拍av| 91国产福利在线| 亚洲国产日日夜夜| 欧美日韩高清影院| 亚洲18女电影在线观看| 欧美日韩情趣电影| 日韩一区精品视频| 日韩一级二级三级精品视频| 男女激情视频一区| 日韩亚洲欧美综合| 精品一区二区在线观看| 久久久影视传媒| 国产91精品一区二区麻豆网站 | 美女精品一区二区| 日韩精品中文字幕在线不卡尤物| 日本美女一区二区| 精品sm在线观看| 国产精品一区二区三区99| 久久久久国产一区二区三区四区 | 欧美精品视频www在线观看| 午夜成人在线视频| 日韩免费观看高清完整版 | 一区二区激情小说| 欧美日韩精品一区二区三区四区| 五月天久久比比资源色| 日韩一区二区电影| 国产成人久久精品77777最新版本| 国产精品福利一区| 欧美亚洲动漫精品| 久久99精品一区二区三区三区| 久久久精品国产免大香伊| 成人av在线网站| 亚洲高清在线精品| 日韩女优毛片在线| 9久草视频在线视频精品| 五月激情综合色| 久久先锋资源网| 97精品电影院| 美女网站色91| 亚洲三级电影网站| 日韩欧美一二区| 99riav久久精品riav| 日韩va欧美va亚洲va久久| 国产日韩欧美精品一区| 欧美亚洲愉拍一区二区| 韩国中文字幕2020精品| 亚洲精品视频在线观看网站| 欧美一级日韩免费不卡| voyeur盗摄精品| 日本中文一区二区三区| 一色桃子久久精品亚洲| 欧美一区二区三区性视频| 成人黄色在线看| 免费不卡在线观看| 亚洲视频一二三区| 久久久久久**毛片大全| 欧美日韩美女一区二区| 成熟亚洲日本毛茸茸凸凹| 日韩国产欧美在线观看| 中文字幕在线不卡视频| 日韩欧美久久久| 日本精品一区二区三区高清 | 国产精品视频在线看| 欧美日本视频在线| www.亚洲激情.com| 国产综合久久久久久久久久久久| 一区二区三区在线影院| 国产精品毛片大码女人| 精品成a人在线观看| 91精品国产高清一区二区三区 | 国产午夜精品一区二区三区视频|