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

com.github.dnault.xmlpatch.internal.logging.Slf4jLogger Maven / Gradle / Ivy

Go to download

Java implementation of RFC 5261: An XML Patch Operations Framework Utilizing XPath Selectors

The newest version!
package com.github.dnault.xmlpatch.internal.logging;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class Slf4jLogger implements XmlPatchLogger {
    private static Logger logger = LoggerFactory.getLogger("com.github.dnault.xmlpatch");

    public void info(String s) {
        logger.info(s);
    }

    public void warn(String s) {
        logger.warn(s);
    }

    public void error(String s) {
        logger.error(s);
    }

    @Override
    public void debug(String s) {
        logger.debug(s);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy