Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
210 views
in Technique[技术] by (71.8m points)

Logback different file for each marker

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...