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

io.appium.java_client.service.local.Slf4jLogMessageContext Maven / Gradle / Ivy

The newest version!
package io.appium.java_client.service.local;

import lombok.AccessLevel;
import lombok.Getter;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.slf4j.event.Level;

/**
 * This class provides context to a Slf4jLogMessageConsumer. 
 * 
 */
public final class Slf4jLogMessageContext {
    /**
     * Returns the {@link Logger} instance associated with this context.
     *
     * @return {@link Logger} instance associated with this context.
     *
     */
    @Getter(AccessLevel.PUBLIC) private final Logger logger;
    /**
     * Returns log {@link Level} for the log message associated with this context.
     *
     * @return {@link Level} for log message associated with this context.
     */
    @Getter(AccessLevel.PUBLIC) private final Level level;

    Slf4jLogMessageContext(String loggerName, Level level) {
        this.level = level;
        this.logger = LoggerFactory.getLogger(loggerName);
    }

    /**
     * Returns the name of the {@link Logger} associated with this context.
     * 
     * @return name of {@link Logger} associated with this context.
     */
    public String getName() {
        return logger.getName();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy