飞书通知、日志调整

pull/1121/head
梁宇奇 2025-11-13 14:04:01 +08:00
parent acab3839bd
commit b4ed317238
2 changed files with 3 additions and 3 deletions

View File

@ -59,8 +59,8 @@ public class FsNotice extends AbstractNotice {
*
* @param e
*/
public <T extends Exception> void sendException2MonitorChat(T e){
sendException2MonitorChat(null,e);
public <T extends Exception> void sendException2MonitorChat(T e) {
sendException2MonitorChat(null, e);
}
/**

View File

@ -177,6 +177,6 @@ public class GlobalExceptionHandler
* @param <T>
*/
private <T extends Exception> void sendExceptionMsg(String uri, T e) {
SpringUtils.getBean(FsNotice.class).sendException2MonitorChat(e);
SpringUtils.getBean(FsNotice.class).sendException2MonitorChat(uri, e);
}
}