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

wiki.xsx.jg.log.Logger Maven / Gradle / Ivy

Go to download

a generator, from the database tables convert to the Java classes or from the Java classes convert to the database tables. support mysql, oracle and sqlserver.

The newest version!
package wiki.xsx.jg.log;

/**
 * 日志类
 */
public class Logger {
    /**
     * 打印info信息
     * @param content 信息
     */
    public static void info(String content){
        System.out.println("[INFO] " + content);
    }

    /**
     * 打印error错误
     * @param content 错误信息
     */
    public static void error(String content){
        System.out.println("[ERROR] " + content);
    }

    /**
     * 换行
     */
    public static void nextLine(){
        System.out.println();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy