📄 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 + -