Remove logback.xml

... to make SDaemon send logs to stdout, which is captured by syslog.

Change-Id: I58e3992a81601617663863b7cb1c197a02276658
This commit is contained in:
Takashi Kajinami 2024-12-26 18:17:36 +09:00
parent 98e3c02624
commit d0bd27af05

View File

@ -187,35 +187,6 @@ function create_base_jre_image {
cd -
}
function create_logback_xml {
sudo tee /usr/local/lib/storlets/logback.xml <<EOF >/dev/null
<configuration>
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>/tmp/SDaemon.log</file>
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<!-- daily rollover. Make sure the path matches the one in the file element or else
the rollover logs are placed in the working directory. -->
<fileNamePattern>/srv/logs/application_%d{yyyy-MM-dd}.%i.log</fileNamePattern>
<timeBasedFileNamingAndTriggeringPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP">
<maxFileSize>1MB</maxFileSize>
</timeBasedFileNamingAndTriggeringPolicy>
<!-- keep 30 days' worth of history -->
<maxHistory>30</maxHistory>
</rollingPolicy>
<encoder>
<pattern>%-4relative [%thread] %-5level %logger{35} - %msg%n</pattern>
</encoder>
</appender>
<root level="TRACE">
<appender-ref ref="FILE" />
</root>
</configuration>
EOF
sudo chmod 0744 /usr/local/lib/storlets/logback.xml
}
function install_storlets_code {
echo "Installing storlets"
cd $REPO_DIR
@ -343,9 +314,6 @@ function install_storlets {
create_base_jre_image
create_default_tenant_image
echo "Create logback xml file"
create_logback_xml
echo "Create test configuration file"
create_test_config_file