use of org.eweb4j.config.bean.LogsConfigBean in project eweb4j-framework by laiweiwei.
the class LogFactory method getMVCLogger.
public static Log getMVCLogger(Class<?> clazz) {
ConfigBean cb = (ConfigBean) SingleBeanCache.get(ConfigBean.class.getName());
LogsConfigBean logs = cb == null ? new LogsConfigBean() : cb.getMvc().getLogs();
return new LogImpl(logs, "MVC", clazz);
}
Aggregations