log as debug because default log level is info and we don't want to see this

This commit is contained in:
Athou
2023-08-02 14:39:03 +02:00
parent 4304f84a55
commit da6f2050f9

View File

@@ -188,17 +188,17 @@ public class FeedEntryContentService {
parser.setErrorHandler(new ErrorHandler() {
@Override
public void warning(CSSParseException exception) throws CSSException {
log.info("warning while parsing css: {}", exception.getMessage(), exception);
log.debug("warning while parsing css: {}", exception.getMessage(), exception);
}
@Override
public void error(CSSParseException exception) throws CSSException {
log.info("error while parsing css: {}", exception.getMessage(), exception);
log.debug("error while parsing css: {}", exception.getMessage(), exception);
}
@Override
public void fatalError(CSSParseException exception) throws CSSException {
log.info("fatal error while parsing css: {}", exception.getMessage(), exception);
log.debug("fatal error while parsing css: {}", exception.getMessage(), exception);
}
});