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, sqlserver and postgresql.

There is a newer version: 1.2.1
Show newest version
package wiki.xsx.jg.log;

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

    public static void error(String content){
        System.out.println("[ERROR] " + content);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy