com.fastchar.slf4j.log4j2.provider.Log4jLevelEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastchar-slf4j Show documentation
Show all versions of fastchar-slf4j Show documentation
FastChar-SLF4J is a FastChar plugin.
package com.fastchar.slf4j.log4j2.provider;
/**
* @author 沈建(Janesen)
* @date 2021/12/25 15:03
*/
public enum Log4jLevelEnum {
All("最低等级的,用于打开所有日志记录"),
Trace("是追踪,就是程序推进以下,你就可以写个trace输出,所以trace应该会特别多"),
Debug("指出细粒度信息事件对调试应用程序是非常有帮助的"),
Info("消息在粗粒度级别上突出强调应用程序的运行过程"),
Warn("输出警告及warn以下级别的日志"),
Error("输出错误信息日志"),
Fatal("输出每个严重的错误事件将会导致应用程序的退出的日志"),
OFF("最高等级的,用于关闭所有日志记录"),
;
public final String text;
Log4jLevelEnum(String text) {
this.text = text;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy