package chocobar.bpl; class CBLGlobal{ public static boolean isVerbose=true; public static void debugMsg(String msg){ if (CBLGlobal.isVerbose){ System.out.println(msg); } } }