mirror of
https://e.coding.net/circlecloud/YumCore.git
synced 2025-09-02 11:36:59 +00:00
@ -75,6 +75,19 @@ public class Log {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 调试消息
|
||||||
|
*
|
||||||
|
* @param msg
|
||||||
|
* 消息
|
||||||
|
*/
|
||||||
|
public static void debug(final String msg, final Throwable e) {
|
||||||
|
if (debug) {
|
||||||
|
logger.info("[DEBUG] " + msg);
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return 获得插件前缀
|
* @return 获得插件前缀
|
||||||
*/
|
*/
|
||||||
|
Reference in New Issue
Block a user