
com.ithit.webdav.integration.spring.SpringBootLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jakarta-integration Show documentation
Show all versions of jakarta-integration Show documentation
IT Hit WebDAV integration for new Jakarta Java servlet containers
package com.ithit.webdav.integration.spring;
import com.ithit.webdav.server.Logger;
public class SpringBootLogger implements Logger {
private final org.slf4j.Logger logger;
public SpringBootLogger(org.slf4j.Logger logger) {
this.logger = logger;
}
@Override
public void logDebug(String message) {
logger.debug(message);
}
@Override
public void logError(String message, Throwable ex) {
logger.error(message, ex);
}
@Override
public boolean isDebugEnabled() {
return logger.isDebugEnabled();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy