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

com.github.megatronking.stringfog.plugin.utils.Log Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
package com.github.megatronking.stringfog.plugin.utils;

public class Log {

    private static boolean isDebug;

    public static void setDebug(boolean debug) {
        isDebug = debug;
    }

    public static void v(String msg) {
        System.out.println(msg);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy