What I exactly need to do is to have different log files for different users. I know how to do it directly in Java.
What I want to have opportunity to setup this via logback.xml configuration file.
Like this:
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<fileNamePattern>logFile.%X{USER}.%d{yyyy-MM-dd}.log</fileNamePattern>
</rollingPolicy>
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %logger - %msg%n</pattern>
</encoder>
</appender>
Note that writting %X{USER} is not correct, it's just an example what I want to do.
So:Is it possible to do setup log file name in logback.xml configuration file?
I'm using Logback 1.0.7