chapters.appenders.conf.logback-SMTP.xml Maven / Gradle / Ivy
<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