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

org.springsource.loaded.Log Maven / Gradle / Ivy

There is a newer version: 1.2.8.RELEASE
Show newest version

package org.springsource.loaded;

/**
 * Minimal support for logging messages, avoids all dependencies it can because it will be loaded very early by the VM
 * and we don't want to introduce unnecessarily complex classloading.
 * 
 * @author Andy Clement
 * @since 1.1.5
 */
public class Log {

	public static void log(String message) {
		System.out.println("SL: " + message);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy