I have a use case where I am generating makers and thus can't specify exact marker names in my logback config, and want to specify to send logs to a different log file for each marker. Is this something that is supported in some way or is this a pipe dream?
I have seen some promising config in filtering, but it is hard to tell if it is flexible enough to do what I would like:
<filter class="ch.qos.logback.classic.filter.LevelFilter">
<level>ERROR</level>
<onMatch>ACCEPT</onMatch>
<onMismatch>DENY</onMismatch>
</filter>
For example, I would like logs with markers to go to specific files like:
<marker>.log
and have a different log file for each marker.
I assume that I could potentially write my own appender if Logback can pass the marker info to it to determine which file to go to, but I would rather keep it all in the configuration.
question from:
https://stackoverflow.com/questions/66049279/logback-different-file-for-each-marker 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…