public PrintStreamLogger()

in src/main/java/org/apache/maven/shared/invoker/PrintStreamLogger.java [55:61]


    public PrintStreamLogger(PrintStream out, int threshold) {
        if (out == null) {
            throw new NullPointerException("missing output stream");
        }
        this.out = out;
        setThreshold(threshold);
    }