com.obatis.core.logger.LogPrintFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of obatis-web Show documentation
Show all versions of obatis-web Show documentation
obatis-web, apply web project
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