tions.aem-orchestrator.2.0.0.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 aem-orchestrator Show documentation
Show all versions of aem-orchestrator Show documentation
Java application for orchestrating AEM infrastructure created using aem-aws-stack-builder
<?xml version="1.0" encoding="UTF-8"?> <configuration> <appender name="FILE" class="ch.qos.logback.core.FileAppender"> <file>orchestrator.log</file> <encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder"> <pattern>%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n</pattern> </encoder> <param name="Append" value="false" /> </appender> <logger name="com.shinesolutions.aemorchestrator" level="debug" additivity="false"> <appender-ref ref="FILE" /> </logger> <root level="error"> <appender-ref ref="FILE" /> </root> </configuration>