All Downloads are FREE. Search and download functionalities are using the official Maven repository.

k-starter.0.4.4.source-code.logback.xml Maven / Gradle / Ivy

The newest version!
<configuration debug="true">

    <springProperty scope="context" name="logType" source="bitcoco.jsk.operation.logging.type"/>
    <springProperty scope="context" name="loggingDomain" source="bitcoco.jsk.operation.logging.domain"/>
    <springProperty scope="context" name="loggingURL" source="bitcoco.jsk.operation.logging.url"/>
    <property name="LOGS" value="../logs" />

    <appender name="rollingFile"
              class="ch.qos.logback.core.rolling.RollingFileAppender">
        <file>${LOGS}/spring-boot-logger.log</file>
        <encoder
                class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
            <Pattern>%d %p %C{1.} [%t] %m%n</Pattern>
        </encoder>

        <rollingPolicy
                class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
            <!-- rollover daily and when the file reaches 10 MegaBytes -->
            <fileNamePattern>${LOGS}/archived/spring-boot-logger-%d{yyyy-MM-dd}.%i.log
            </fileNamePattern>
            <timeBasedFileNamingAndTriggeringPolicy
                    class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP">
                <maxFileSize>10MB</maxFileSize>
            </timeBasedFileNamingAndTriggeringPolicy>
        </rollingPolicy>
    </appender>

    <appender name="console"
              class="ch.qos.logback.core.ConsoleAppender">
        <layout class="ch.qos.logback.classic.PatternLayout">
<!--            <Pattern>-->
<!--                %black(%d{ISO8601}) %highlight(%-5level) [%blue(%t)] %yellow(%C{1.}): %msg%n%throwable-->
<!--            </Pattern>-->
            <Pattern>%d %p %m%n</Pattern>
        </layout>
    </appender>

    <!-- LOG "com.auth*" at info level -->
    <logger name="${loggingDomain}" level="info">
        <appender-ref ref="${logType}"/>
    </logger>

    <root level="info">
        <appender-ref ref="console" />
    </root>

</configuration>




© 2015 - 2025 Weber Informatics LLC | Privacy Policy