Here you can find the source of logDebug(String string)
public static void logDebug(String string)
//package com.java2s; //License from project: Open Source License import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class Main { private static Logger logger = LoggerFactory.getLogger("VirtualEnactment"); public static void logDebug(String string) { logger.info("debug :" + string); }//from ww w .j a v a2 s. c om }