style: remove emojis from log statements
This commit is contained in:
@@ -30,7 +30,7 @@ public class SmsToolService extends AbstractMcpToolService {
|
||||
|
||||
@McpFunction(name = "send_sms", description = "SMS 발송", prompt = "고객에게 SMS 메시지를 발송해줘.", mappingId = "SMS_SEND_001")
|
||||
public Object sendSms(SmsSendReq req) {
|
||||
log.info("📱 [SMS] SMS 발송 요청 수신. 수신자: {}", req.getPhoneNumber());
|
||||
log.info("[SMS] SMS 발송 요청 수신. 수신자: {}", req.getPhoneNumber());
|
||||
|
||||
// MapStruct를 이용한 자동 매핑 (AI DTO -> MCI DTO)
|
||||
SmsMciReqDto mciReq = SmsMciMapper.INSTANCE.toMciReq(req);
|
||||
|
||||
Reference in New Issue
Block a user