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

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