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

nana.authentication-service.1.0.source-code.logback.xml Maven / Gradle / Ivy

Go to download

Part of the Banana Service Project. Simplicity is paramount. The Authentication service is responsible for the creation, storage, and verification of Application Tokens and User Tokens.

The newest version!
<configuration>
    <contextName>Banana</contextName>
    <jmxConfigurator />

    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
        <encoder>
            <pattern>%date{ISO8601, UTC} [%10.10thread] %-5level %25.25logger : %msg%n</pattern>
        </encoder>
    </appender>

    <appender name="rollingFile" class="ch.qos.logback.core.rolling.RollingFileAppender">
        <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
            <fileNamePattern>/var/log/banana/authentication_service-%d{yyyy-MM-dd}.log</fileNamePattern>
            <maxHistory>60</maxHistory>
            <maxFileSize>100MB</maxFileSize>
        </rollingPolicy>
        <encoder>
            <pattern>%date{ISO8601, UTC} [%20.20thread] %-5level %45.45logger : %msg%n</pattern>
        </encoder>
    </appender>

    <appender name="async" class="ch.qos.logback.classic.AsyncAppender">
        <appender-ref ref="rollingFile"/>
    </appender>

    <root level="debug">
        <appender-ref ref="async"/>
    </root>

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

</configuration>




© 2015 - 2025 Weber Informatics LLC | Privacy Policy