
Hello, I'm using the DBAppender and the MDC to log certain elements of the requests into our application. I've noticed that besides just the elements that I've put in the MDC, all of the system properties are also being logged to the logging_event_property table. This has caused many concerns because there are certain system properties that should not be logged. Here is my DB Appender configuration <appender name="DB" class="ch.qos.logback.classic.db.DBAppender"> <connectionSource class="ch.qos.logback.core.db.DataSourceConnectionSource"> <dataSource class="com.mchange.v2.c3p0.ComboPooledDataSource"> <driverClass>${db.jdbc.driverClassName}</driverClass> <jdbcUrl>${db.jdbc.url}</jdbcUrl> <user>${db.jdbc.username}</user> <password>${db.jdbc.password}</password> </dataSource> </connectionSource> <encoder> <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %X %ex{short} - %n</pattern> </encoder> </appender> Note that the properties for username / password / etc are pulled in from another file using the <property file="_path_to_file/conf.properties" /> All the properties in the external file are being logged which contain passwords etc that do not belong in the logging_event_property table. I've searched through the manual and the documentation but cannot find a way to disable this behaviour. Any help would be most appreciated! Cheers, Bryan