All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.cola.statemachine.impl.Debugger Maven / Gradle / Ivy

package com.alibaba.cola.statemachine.impl;

/**
 * Debugger, This is used to decouple Logging framework dependency
 *
 * @author Frank Zhang
 * @date 2020-02-11 11:08 AM
 */
public class Debugger {

    private static boolean isDebugOn = false;

    public static void debug(String message){
        if(isDebugOn){
            System.out.println(message);
        }
    }

    public static void enableDebug(){
        isDebugOn = true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy