?? log.java
字號:
package com.briup;
import com.briup.exception.LogException;
/**
* @author qinry
* @company Briup Technology Inc,.(Shanghai)
* @date Mar 26, 2008 2:19:12 PM
*/
public interface Log {
/**
* output Debug level log
*
* @param log
* the content of log
*/
public void writeDebug(String log);
/**
* output Info level log
*
* @param log
* the content of log
*/
public void writeInfo(String log);
/**
* output Warning level log
*
* @param log
* the content of log
*/
public void writeWarn(String log);
/**
* output Error level log
*
* @param log
* the content of log
*/
public void writeError(String log);
/**
* output Fatal level log
*
* @param log
* the content of log
*/
public void writeFatal(String log);
/**
* output the log by level
*
* @param log
* the content of log
* @param levelGrade
* the level of log
*/
public void write(String log, int levelGrade) throws LogException;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -