/** * Method called by children Servlest for debug purpose Println is done only if class name name is * in kawansoft-debug.ini */ public static void debug(String s) { if (DEBUG) { ServerLogger.getLogger().log(Level.WARNING, s); } }
private void debug(String s) { if (DEBUG) { ServerLogger.getLogger().log(Level.WARNING, s); } }