ilogger.java
来自「短信发送」· Java 代码 · 共 38 行
JAVA
38 行
/*
* ILogger.java
*
* Copyright (c) 2001 GlobaLoop LTD., Joseph Hartal, Ze'ev Bubis.
* All Rights Reserved.
*
* You may study, use, modify, and distribute this software for any
* purpose provided that this copyright notice appears in all copies.
*
* This software is provided WITHOUT WARRANTY either expressed or
* implied.
*
*/
package com.jdev.util;
public interface ILogger
{
public void critical(String message, Throwable tr);
public void critical(String message);
public void error(String message, Throwable tr);
public void error(String message);
public void warning(String message, Throwable tr);
public void warning(String message);
public void notice(String message);
public void trace(String message);
public void debug(String message, Throwable tr);
public void debug(String message);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?