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

com.obatis.core.logger.LogPrintFactory Maven / Gradle / Ivy

There is a newer version: 3.0.1-release
Show newest version
package com.obatis.core.logger;

public class LogPrintFactory {

	private LogPrintFactory() {}
	
	public static LogPrinter getLogPrint(Class clz) {
		return new LogPrinter(clz.getCanonicalName());
	}
	public static LogPrinter getLogPrint(String className) {
		return new LogPrinter(className);
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy