Charles
My feedback
38 results found
-
1 voteCharles shared this idea ·
-
1 voteCharles shared this idea ·
-
3 votesCharles shared this idea ·
-
1 vote
An error occurred while saving the comment -
2 votesCharles shared this idea ·
-
15 votesCharles supported this idea ·
-
8 votesCharles supported this idea ·
-
7 votesCharles supported this idea ·
-
4 votesCharles supported this idea ·
-
19 votesCharles supported this idea ·
-
6 votesCharles shared this idea ·
-
32 votesCharles supported this idea ·
-
2 votesCharles shared this idea ·
-
40 votesCharles supported this idea ·
-
11 votesCharles shared this idea ·
-
3 votesCharles supported this idea ·
-
8 votesCharles shared this idea ·
-
16 votesCharles shared this idea ·
Code block with correct markup:
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>${log_path}.log</file>
<encoder class="com.xgen.svc.mms.util.HeaderPatternLayoutEncoder$Classic">
<pattern>
%d{"yyyy-MM-dd'T'HH:mm:ss.SSSZ"} [%thread] %XF{groupId, "gid:%s "}%XF{jobId, "jobId:%s "}%-5level %logger [%file.%method:%line] - %msg%n
</pattern>
</encoder>
<!-- Rollover the logs once per day, keep 30 days, compressed -->
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<fileNamePattern>${log_path}.%d{yyyyMMdd}.log.gz</fileNamePattern>
<maxHistory>30</maxHistory>
</rollingPolicy>
</appender>