mirror of
https://e.coding.net/circlecloud/YumCore.git
synced 2024-11-22 01:48:50 +00:00
feat: 添加格式化调试和异常调试
Signed-off-by: 502647092 <admin@yumc.pw>
This commit is contained in:
parent
a27a8dc79e
commit
b699068d6b
@ -49,6 +49,18 @@ public class Log {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 调试消息
|
||||
*
|
||||
* @param msg
|
||||
* 消息
|
||||
* @param object
|
||||
* 参数
|
||||
*/
|
||||
public static void d(final String msg, final Object... object) {
|
||||
debug(String.format(msg, object));
|
||||
}
|
||||
|
||||
/**
|
||||
* 调试消息
|
||||
*
|
||||
@ -88,6 +100,18 @@ public class Log {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 调试消息
|
||||
*
|
||||
* @param e
|
||||
* 异常
|
||||
*/
|
||||
public static void debug(final Throwable e) {
|
||||
if (debug) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return 获得插件前缀
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user