mirror of
https://github.com/Estom/notes.git
synced 2026-02-04 11:04:21 +08:00
19 lines
340 B
Java
19 lines
340 B
Java
package cn.aofeng.demo.util;
|
|
|
|
/**
|
|
* 日志工具类。
|
|
*
|
|
* @author <a href="mailto:aofengblog@163.com">聂勇</a>
|
|
*/
|
|
public class LogUtil {
|
|
|
|
public static void log(String msg) {
|
|
System.out.println(msg);
|
|
}
|
|
|
|
public static void log(String msg, Object... param) {
|
|
log( String.format(msg, param) );
|
|
}
|
|
|
|
}
|