决策平台http认证服务器。
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
295 B

package helper;
/**
* @author richie
* @version 10.0
* Created by richie on 2018-12-03
*/
public class Logger {
public void error(String message, Throwable t) {
System.out.println("error:" + message);
if (t != null) {
t.printStackTrace();
}
}
}