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

com.agido.logback.elasticsearch.writer.StdErrWriter Maven / Gradle / Ivy

The newest version!
package com.agido.logback.elasticsearch.writer;

public class StdErrWriter implements SafeWriter {

    public void write(char[] cbuf, int off, int len) {
        System.err.println(new String(cbuf, 0, len));
    }

    public void sendData() {
        // No-op
    }

    public boolean hasPendingData() {
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy