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

net.amygdalum.testrecorder.util.Debug Maven / Gradle / Ivy

The newest version!
package net.amygdalum.testrecorder.util;

import java.util.function.Function;

public final class Debug {

	private Debug() {
	}
	
	public static  T print(T object) {
		Logger.info(object);
		return object;
	}

	public static  T print(T object, Function mapping) {
		S part = mapping.apply(object);
		Logger.info(part);
		return object;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy