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

io.github.icodegarden.commons.lang.util.LogUtils Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package io.github.icodegarden.commons.lang.util;
/**
 * 
 * @author Fangfang.Xu
 *
 */
public abstract class LogUtils {

	public static void debugIfEnabled(org.slf4j.Logger log, Runnable runnable) {
		if (log.isDebugEnabled()) {
			runnable.run();
		}
	}

	public static void infoIfEnabled(org.slf4j.Logger log, Runnable runnable) {
		if (log.isInfoEnabled()) {
			runnable.run();
		}
	}

	public static void warnIfEnabled(org.slf4j.Logger log, Runnable runnable) {
		if (log.isWarnEnabled()) {
			runnable.run();
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy