수정 버전

This commit is contained in:
jade
2026-07-15 16:00:13 +09:00
parent b431988ee6
commit 7edda9aa9e
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@
## 명심해야 할 규칙 추가란 ## 명심해야 할 규칙 추가란
* 이모지는 무조건 넣지 않는다 * 이모지는 무조건 넣지 않는다
* import 할것 무조건 한다 * import 할것 무조건 한다
* Git push는 사용자 명시적으로 지시할 때만 수행한다. * Git commit과 push는 사용자 명시적인 허락(지시) 없이는 절대 수행하지 않는다.
* 자바 만들때는 무조건 아래 내용을 넣는다 * 자바 만들때는 무조건 아래 내용을 넣는다
/** /**
* @package io.shinhanlife.axhub.biz.mcp.tool.sms * @package io.shinhanlife.axhub.biz.mcp.tool.sms

View File

@@ -92,7 +92,7 @@ public class McpRouterController {
log.warn(" [보안 차단] 권한 오류: {}", se.getMessage()); log.warn(" [보안 차단] 권한 오류: {}", se.getMessage());
return ResponseEntity.status(403).body(Map.of("error", se.getMessage())); return ResponseEntity.status(403).body(Map.of("error", se.getMessage()));
} catch (Exception e) { } catch (Exception e) {
log.error(" 파이프라인 실행 중 오류: {}", e.getMessage()); log.error(" 파이프라인 실행 중 오류:", e);
return ResponseEntity.internalServerError().body(Map.of("error", e.getMessage())); return ResponseEntity.internalServerError().body(Map.of("error", e.getMessage()));
} }
} }