com.suchtool.nicelog.constant.LogLevelEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nicelog-spring-boot-starter Show documentation
Show all versions of nicelog-spring-boot-starter Show documentation
collect log automatically for SpringBoot project
package com.suchtool.nicelog.constant;
import lombok.Getter;
@Getter
public enum LogLevelEnum {
DEBUG("调试"),
INFO("信息"),
WARN("警告"),
ERROR("错误"),
;
private final String name;
LogLevelEnum(String name) {
this.name = name;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy