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

chapters.appenders.conf.logback-SMTP.xml Maven / Gradle / Ivy

There is a newer version: 1.3.0-alpha4
Show newest version
<configuration>

  <appender name="SMTP" class="ch.qos.logback.classic.net.SMTPAppender">
    <encoder>
      <pattern>%-4relative [%thread] %-5level %class - %msg%n</pattern>
    </encoder>
    <from>[email protected]</from>                          
    <SMTPHost>mail.host.ch</SMTPHost>
    
    <subject>Last Event: %-10logger %nopex</subject>           
    
    <to>[email protected]</to>
  </appender>

  <root level="debug">
    <appender-ref ref="SMTP" />
  </root>
</configuration>





© 2015 - 2024 Weber Informatics LLC | Privacy Policy