com.github.dnault.xmlpatch.internal.logging.Slf4jLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xml-patch Show documentation
Show all versions of xml-patch Show documentation
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