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

com.seoduct.logging.DefaultSlackLayout Maven / Gradle / Ivy

package com.seoduct.logging;

import ch.qos.logback.classic.spi.ILoggingEvent;
import ch.qos.logback.core.LayoutBase;

public class DefaultSlackLayout extends LayoutBase {
    @Override
    public String doLayout(ILoggingEvent event) {
        return "-- [" + event.getLevel() + "]" +
                event.getLoggerName() + " - " +
                event.getFormattedMessage();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy