1: public class Utilities
2: {
3: // set DEBUG = false and compile to stop debug messages
4: final static boolean DEBUG = true;
5:
6: public static void printMsg(String msg)
7: {
8: if (DEBUG)
9: {
10: System.out.println(msg);
11: }
12: }
13: }
14:
15: