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

org.znerd.logdoc.StderrLogBridge Maven / Gradle / Ivy

There is a newer version: 1.0-rc3
Show newest version
// See the COPYRIGHT file for copyright and license information
package org.znerd.logdoc;

import java.io.PrintWriter;

public class StderrLogBridge extends PrintWriterLogBridge {

    private static final StderrLogBridge SINGLETON_INSTANCE = new StderrLogBridge();

    private StderrLogBridge() {
        super(new PrintWriter(System.err));
    }

    public static final StderrLogBridge getInstance() {
        return SINGLETON_INSTANCE;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy