Skip to content

Commit

Permalink
log as debug because default log level is info and we don't want to s…
Browse files Browse the repository at this point in the history
…ee this
  • Loading branch information
Athou committed Aug 2, 2023
1 parent 4304f84 commit da6f205
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,17 +188,17 @@ private CSSOMParser buildCssParser() {
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);
}
});

Expand Down

0 comments on commit da6f205

Please sign in to comment.