view Log.java @ 7:7d8b56c0a041 default tip

Added an icon.
author Tom Fredrik Blenning Klaussen <bfg@bfgconsult.no>
date Fri, 29 Mar 2019 19:58:41 +0100
parents 855307f4bf5e
children
line wrap: on
line source

class Log extends java.io.PrintStream
{

    static Log DEFAULT = new Log(System.err);

    Log(java.io.OutputStream out) {
	super(out);
    }

}