![JAR search and dependency download from the Maven repository](/logo.png)
com.tlgen.orm.utils.TraceLog Maven / Gradle / Ivy
The newest version!
package com.tlgen.orm.utils;
import com.tlgen.orm.config.SpeedProperties;
import java.util.Objects;
public class TraceLog {
public static void out(String text) {
SpeedProperties speedProperties = SpringUtils.getBean("speed-com.tlgen.orm.config.SpeedProperties");
if (Objects.nonNull(speedProperties.getShowLog()) && speedProperties.getShowLog()) {
System.out.println(text);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy