From 7edda9aa9e8fe569eefb77d83d4ee5005dab69ac Mon Sep 17 00:00:00 2001 From: jade Date: Wed, 15 Jul 2026 16:00:13 +0900 Subject: [PATCH] =?UTF-8?q?=EC=88=98=EC=A0=95=20=EB=B2=84=EC=A0=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .agents/AGENTS.md | 2 +- .../axhub/biz/mcp/gateway/presentation/McpRouterController.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.agents/AGENTS.md b/.agents/AGENTS.md index 1828ebf..a111fa2 100644 --- a/.agents/AGENTS.md +++ b/.agents/AGENTS.md @@ -10,7 +10,7 @@ ## 명심해야 할 규칙 추가란 * 이모지는 무조건 넣지 않는다 * import 할것 무조건 한다 -* Git push는 사용자가 명시적으로 지시할 때만 수행한다. +* Git commit과 push는 사용자의 명시적인 허락(지시) 없이는 절대 수행하지 않는다. * 자바 만들때는 무조건 아래 내용을 넣는다 /** * @package io.shinhanlife.axhub.biz.mcp.tool.sms diff --git a/axhub-gateway/src/main/java/io/shinhanlife/axhub/biz/mcp/gateway/presentation/McpRouterController.java b/axhub-gateway/src/main/java/io/shinhanlife/axhub/biz/mcp/gateway/presentation/McpRouterController.java index 8c01a78..39a5496 100644 --- a/axhub-gateway/src/main/java/io/shinhanlife/axhub/biz/mcp/gateway/presentation/McpRouterController.java +++ b/axhub-gateway/src/main/java/io/shinhanlife/axhub/biz/mcp/gateway/presentation/McpRouterController.java @@ -92,7 +92,7 @@ public class McpRouterController { log.warn(" [보안 차단] 권한 오류: {}", se.getMessage()); return ResponseEntity.status(403).body(Map.of("error", se.getMessage())); } catch (Exception e) { - log.error(" 파이프라인 실행 중 오류: {}", e.getMessage()); + log.error(" 파이프라인 실행 중 오류:", e); return ResponseEntity.internalServerError().body(Map.of("error", e.getMessage())); } }