You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
333 B
16 lines
333 B
package com.example.jmacro.util;
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
public class Logger {
|
|
|
|
public static void info(String log, Object... arg) {
|
|
System.out.println(StrUtil.format(log, arg));
|
|
}
|
|
|
|
public static void error(String log, Object... arg) {
|
|
|
|
System.err.println(StrUtil.format(log, arg));
|
|
}
|
|
}
|