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

com.yiwowang.intellij.finding.base.util.LogUtils Maven / Gradle / Ivy

The newest version!
package com.yiwowang.intellij.finding.base.util;

import org.apache.commons.lang3.StringUtils;

public class LogUtils {
    private static final boolean DEBUG = true;

    public static void log(String... msg) {
        if (!DEBUG || msg == null) {
            return;
        }

        System.out.println(StringUtils.join(msg));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy