I have the following problem.
Say I have one point of logging in my application. For example I'm receiving some request strings like:
[ABC] 123...
I want to log requests in the following way:
[ABC] 123 ... // -> abc.log
[XYZ] 567 ... // -> xyz.log
...
So log file name can be any combination of 3 [A-Z] symbols.
How can I achieve that with logback?