/**
  * 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);
   }
 }
예제 #2
0
 private void debug(String s) {
   if (DEBUG) {
     ServerLogger.getLogger().log(Level.WARNING, s);
   }
 }