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

org.owasp.esapi.logging.slf4j.Slf4JLogLevelHandler Maven / Gradle / Ivy

/**
 * OWASP Enterprise Security API (ESAPI)
 * 
 * This file is part of the Open Web Application Security Project (OWASP)
 * Enterprise Security API (ESAPI) project. For details, please see
 * http://www.owasp.org/index.php/ESAPI.
 *
 * Copyright (c) 2007 - The OWASP Foundation
 * 
 * The ESAPI is published by OWASP under the BSD license. You should read and accept the
 * LICENSE before you use, modify, and/or redistribute this software.
 * 
 * @created 2018
 */
package org.owasp.esapi.logging.slf4j;

import org.slf4j.Logger;
import org.slf4j.Marker;
/**
 * Contract used to isolate translations for each SLF4J Logging Level.
 * 
 * @see Slf4JLogLevelHandlers
 * @see Slf4JLogBridgeImpl
 *
 */
 interface Slf4JLogLevelHandler {
     /** Check if the logging level is enabled for the specified logger.*/
    boolean isEnabled(Logger logger);
    /**
     * Calls the appropriate log level event on the specified logger.
     * @param logger Logger to invoke.
     * @param marker Marker to apply to event
     * @param msg Message to log.
     */
    void log(Logger logger, Marker marker, String msg);
    /**
     * Calls the appropriate log level event on the specified logger.
     * @param logger Logger to invoke
     * @param marker Marker to apply to the event.
     * @param msg Message to log
     * @param th Throwable to log.
     */
    void log(Logger logger, Marker marker, String msg, Throwable th);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy