I am trying to create DB logging appender, ch.qos.logback.classic.db.DBAppender
this one to be exact. But from what I read, the DB Appender functionality was dropped from Logback some time ago, with no guarantee when it will be back.
https://jira.qos.ch/browse/LOGBACK-1609
Now from what I read, there was a vulnerability in there. But not sure what, because I wasn't able to find any info on it?
Now from what I understand, the newer Spring Boot versions come with Logback 1.2.11
, and DBAppender
was supported till 1.2.8
i believe.
So my question is:
Is it safe to exclude the logback that comes with Spring Boot and use the older Logback without causing a risk?
Is switching to log4j the best option? That has had its own issues with security this year!