↧
Answer by Aliaksandr Kavalenka for Disable PDFBox logging with Springboot...
I think this also should work for log4j2. I use this simple way of disabling logs from specific libraries in SpringBoot applications. You need just add it into the log4j2.xml file. <Loggers>...
View ArticleAnswer by Benjamin James for Disable PDFBox logging with Springboot...
This is the configuration file I ended up using. I didn't include any logging releated dependencies or add any exclusions to pdfbox dependency, just added this file to the folder containing the...
View ArticleAnswer by Tilman Hausherr for Disable PDFBox logging with Springboot...
Here's what I have been using in the "old" log4j log4j.properties file (you should migrate to log4j2): log4j.logger.org.springframework=WARN...
View ArticleDisable PDFBox logging with Springboot org.apache.commons.logging
I can't find a way to stop warnings from PDFBox I am using in a psring boot application. For example: 2019-10-01 16:53:51.021 WARN 24564 --- [nio-8443-exec-2] o.a.pdfbox.pdmodel.font.PDType0Font : No...
View Article