Fix: Remove newline in BusinessToolController response log

This commit is contained in:
jade
2026-07-06 12:35:35 +09:00
parent afbbf3f331
commit 5b0cada798

View File

@@ -142,9 +142,9 @@ public class BusinessToolController {
rpcResponse.put("id", payload != null ? payload.get("id") : null); rpcResponse.put("id", payload != null ? payload.get("id") : null);
try { try {
log.info("\n [Tool -> MCP Gateway] 동적 툴 실행 결과 반환: {}", objectMapper.writeValueAsString(rpcResponse)); log.info("[Tool -> MCP Gateway] 동적 툴 실행 결과 반환: {}", objectMapper.writeValueAsString(rpcResponse));
} catch (Exception e) { } catch (Exception e) {
log.info("\n [Tool -> MCP Gateway] 동적 툴 실행 결과 반환: {}", rpcResponse); log.info("[Tool -> MCP Gateway] 동적 툴 실행 결과 반환: {}", rpcResponse);
} }
return rpcResponse; return rpcResponse;