oma-service.1.1.source-code.logback.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aroma-service Show documentation
Show all versions of aroma-service Show documentation
Part of the Aroma Project.
Simplicity is paramount.
Aroma allows two-way communication between Developers and their Applications.
COMMAND your Software with Aroma.
<configuration> <contextName>Aroma</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/aroma/aroma_service/aroma_service-%d{yyyy-MM-dd}.log</fileNamePattern> <maxHistory>7</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> <logger name="tech.aroma.service" level="debug" /> </configuration>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy