.scale.cloudpool.aws.spot.4.1.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 cloudpool.aws.spot Show documentation
Show all versions of cloudpool.aws.spot Show documentation
A cloud pool capable of managing a pool of AWS spot instances.
This build module produces an all-in-one "server and application" executable
jar file. When executed, it starts an embedded web server that publishes
the cloud pool REST API endpoint.
<?xml version="1.0" encoding="UTF-8" ?> <configuration> <!-- Output everything to stdout (according to twelve-factor app manifesto)--> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <target>System.out</target> <filter class="ch.qos.logback.classic.filter.ThresholdFilter"> <level>DEBUG</level> </filter> <encoder> <pattern>%date{ISO8601} [%thread] %-5level [%class{0}:%method:%line] - %msg%n</pattern> </encoder> </appender> <root> <level value="ERROR" /> <appender-ref ref="STDOUT" /> </root> <logger name="com.elastisys"> <level value="DEBUG"/> </logger> </configuration>