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

io.github.linyimin0812.profiler.common.logger.LoggerName Maven / Gradle / Ivy

There is a newer version: 3.1.4
Show newest version
package io.github.linyimin0812.profiler.common.logger;

/**
 * @author linyimin
 **/
public enum LoggerName {
    /**
     * information about app startup
     */
    STARTUP("startup"),

    /**
     * enhanced method information
     */
    TRANSFORM("transform"),

    /**
     * async init method bean information
     */
    ASYNC_INIT_BEAN("async-init-bean");

    private final String value;

    private LoggerName(String value) {
        this.value = value;
    }

    public String getValue() {
        return this.value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy