Actions
Bug #26446
closedUser story #26303: Migrate logback.xml to new fixed logfile
Every time webapp starts the logback file gets duplicate XML to configure fixed log file
Status:
Released
Priority:
N/A
Assignee:
Category:
Web - Maintenance
Target version:
Pull Request:
Severity:
Trivial - no functional impact | cosmetic
UX impact:
User visibility:
Operational - other Techniques | Rudder settings | Plugins
Effort required:
Small
Priority:
0
Name check:
To do
Fix check:
To do
Regression:
No
Description
The parent does not actually take into account that the configuration already exists and adds many lines to the file :
<if condition="property("run.mode").equalsIgnoreCase("production")"> <then> <appender name="STDOUT" class="ch.qos.logback.core.rolling.RollingFileAppender"> <file>${WEBAPP_DIR}/webapp.log</file> <append>true</append> <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> <fileNamePattern>${WEBAPP_DIR}/webapp-%d{yyyy-MM-dd}.log.gz</fileNamePattern> <maxHistory>30</maxHistory> </rollingPolicy> <encoder> <pattern>%d{[yyyy-MM-dd HH:mm:ssZ]} %-5level %logger - %msg%n%ex{full}</pattern> </encoder> </appender> </then> <else> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder"> <Pattern>%d{[yyyy-MM-dd HH:mm:ssZ]} %-5level %logger - %msg%n%ex{full}</Pattern> </encoder> </appender> </else> </if> <property value="/var/log/rudder/webapp" name="WEBAPP_DIR"/> <if condition="property("run.mode").equalsIgnoreCase("production")"> <then> <appender class="ch.qos.logback.core.rolling.RollingFileAppender" name="STDOUT"> <file>${WEBAPP_DIR}/webapp.log</file> <append>true</append> <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> <fileNamePattern>${WEBAPP_DIR}/webapp-%d{yyyy-MM-dd}.log.gz</fileNamePattern> <maxHistory>30</maxHistory> </rollingPolicy> <encoder> <pattern>%d{[yyyy-MM-dd HH:mm:ssZ]} %-5level %logger - %msg%n%ex{full}</pattern> </encoder> </appender> </then> <else> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder"> <Pattern>%d{[yyyy-MM-dd HH:mm:ssZ]} %-5level %logger - %msg%n%ex{full}</Pattern> </encoder> </appender> </else> </if> <property value="/var/log/rudder/webapp" name="WEBAPP_DIR"/> <if condition="property("run.mode").equalsIgnoreCase("production")"> <then> <appender class="ch.qos.logback.core.rolling.RollingFileAppender" name="STDOUT"> <file>${WEBAPP_DIR}/webapp.log</file> <append>true</append> <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> <fileNamePattern>${WEBAPP_DIR}/webapp-%d{yyyy-MM-dd}.log.gz</fileNamePattern> <maxHistory>30</maxHistory> </rollingPolicy> <encoder> <pattern>%d{[yyyy-MM-dd HH:mm:ssZ]} %-5level %logger - %msg%n%ex{full}</pattern> </encoder> </appender> </then> <else> <appender class="ch.qos.logback.core.ConsoleAppender" name="STDOUT"> <encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder"> <Pattern>%d{[yyyy-MM-dd HH:mm:ssZ]} %-5level %logger - %msg%n%ex{full}</Pattern> </encoder> </appender> </else> </if>
Updated by Vincent MEMBRÉ about 1 month ago
- Status changed from New to In progress
- Assignee set to Vincent MEMBRÉ
Updated by Vincent MEMBRÉ about 1 month ago
- Status changed from In progress to Pending technical review
- Assignee changed from Vincent MEMBRÉ to Clark ANDRIANASOLO
- Pull Request set to https://github.com/Normation/rudder/pull/6214
Updated by Anonymous about 1 month ago
- Status changed from Pending technical review to Pending release
Applied in changeset rudder|ca1da7650b17725256f00a691a4c934bf86f739a.
Updated by Vincent MEMBRÉ 27 days ago
- Status changed from Pending release to Released
This bug has been fixed in Rudder 8.3.0~beta1 which was released today.
Actions