<div dir="ltr">Hi,<div><br></div><div>I want to save my log file in a directory accordingly the current day. For example, if today is 0614 (June 14th), all log events will go to a folder 0614, and tomorrow I want the logs to go to 0615.</div><div><br></div><div>I don´t want use rolling policy. I mean, I want the file to be directly created in the right place, and not saved in a temporary place and in other day to be saved in an archive place.</div><div><br></div><div>I tryed:</div><div><br></div><div><div><configuration></div><div>    <timestamp key="DIR" datePattern="MMdd" /></div><div>    <appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender"></div><div>        <file>./log/${DIR}/gp2b.log</file></div><div>        <rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy"></div><div>            <fileNamePattern>app.%i.log</fileNamePattern></div><div>            <minIndex>1</minIndex></div><div>            <maxIndex>10</maxIndex></div><div>        </rollingPolicy></div><div>        <triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy"></div><div>            <maxFileSize>5MB</maxFileSize></div><div>        </triggeringPolicy></div><div>        <encoder></div><div>            <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36}:%L - %msg%rEx{10}%n</pattern></div><div>        </encoder></div><div>    </appender></div><div><br></div><div>    <logger name="com.ocs.ProxyHttp.gp2b" level="DEBUG" /></div><div><br></div><div>    <root level="DEBUG"></div><div>        <appender-ref ref="FILE" /></div><div>    </root></div><div></configuration></div></div><div><br></div><div><br></div><div>Thanks,</div><div>Douglas</div></div>