mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
log as debug because default log level is info and we don't want to see this
This commit is contained in:
@@ -188,17 +188,17 @@ public class FeedEntryContentService {
|
|||||||
parser.setErrorHandler(new ErrorHandler() {
|
parser.setErrorHandler(new ErrorHandler() {
|
||||||
@Override
|
@Override
|
||||||
public void warning(CSSParseException exception) throws CSSException {
|
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
|
@Override
|
||||||
public void error(CSSParseException exception) throws CSSException {
|
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
|
@Override
|
||||||
public void fatalError(CSSParseException exception) throws CSSException {
|
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);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user