// #13 package ooos; public class Debug { private Console c; protected Debug() { c = new Console("DEBUG CONSOLE"); println(OOOS.CONSTRUCTOR," Debug Contructor"); } public void println(int lvl, String s) { if (OOOS.debugLvl >= lvl) c.println("["+lvl+"] "+s); } }