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

.scale.cloudpool.aws.spot.4.1.0.source-code.logback.xml Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 5.2.3
Show newest version
<?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>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy