All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arextest.schedule.model.bizlog.BizLogLevel Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package com.arextest.schedule.model.bizlog;

import lombok.Getter;

/**
 * Created by qzmo on 2023/5/31.
 */
public enum BizLogLevel {
  INFO(0),
  WARN(1),
  ERROR(2),
  DEBUG(3),
  ;

  @Getter
  private final int val;

  BizLogLevel(int val) {
    this.val = val;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy