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
The newest version!
package com.suchtool.nicelog.constant;
import lombok.Getter;
@Getter
public enum LogLevelEnum {
INFO("信息"),
WARNING("警告"),
ERROR("错误"),
;
private final String name;
LogLevelEnum(String name) {
this.name = name;
}
}