1 package org.sapia.soto; 2 3 4 12 public class Debug { 13 public static final boolean DEBUG = (System.getProperty("soto.debug") != null) 14 ? System.getProperty("soto.debug").equals("true") : false; 15 16 private Debug() { 17 } 18 19 public static final void debug(String msg) { 20 if (DEBUG) { 21 System.out.println("[SOTO-DEBUG] " + msg); 22 } 23 } 24 } 25 | Popular Tags |