📄 defaultrootlogger.java
字号:
package cn.edu.nju.software.sd.cll;/** *This class is just prepared for the default initialization of Logger. * @author SuSE */public class DefaultRootLogger extends Logger{ /** * the Default construct. */ public DefaultRootLogger(){ super(); this.setLevel(Level.TRACE); this.setLayout(new SimpleLayout()); this.Register(new ConsoleAppender(new SimpleLayout())); } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -