style: remove all emojis from source code as per user rule

This commit is contained in:
jade
2026-07-13 16:15:17 +09:00
parent fc1e8489cd
commit 7e591e8421
23 changed files with 92 additions and 58 deletions

View File

@@ -45,7 +45,7 @@ public class GlobalExceptionHandler {
@ExceptionHandler(Exception.class)
public ResponseEntity<JsonRpcResponse> handleAllException(Exception e) {
log.error("💥 [Gateway Fatal Error] 치명적 오류 발생", e);
log.error(" [Gateway Fatal Error] 치명적 오류 발생", e);
return buildErrorResponse(-32000, "Server error: 시스템 관리자에게 문의하세요.");
}

View File

@@ -244,7 +244,7 @@ public class PodScaffolder {
}
log.append("\n=========================================\n");
log.append(" 🎉 Pod Scaffolding Complete! \n");
log.append(" Pod Scaffolding Complete! \n");
log.append("=========================================\n");
log.append("1. [새로운 모듈] ").append(moduleName).append(" 폴더가 생성되었습니다.\n");
log.append("2. [ToolScaffolder]를 사용해 이 모듈 안에 툴을 추가하세요.\n");

View File

@@ -36,10 +36,10 @@ public class GlowMciParserTest {
// then
System.out.println("==================================================");
System.out.println(" [원본 MCI 전문] : [" + rawMciString + "]");
System.out.println(" [파싱된 ID (10자리)] : [" + result.getCustomerId() + "]");
System.out.println(" [파싱된 Name (15자리)] : [" + result.getName() + "]");
System.out.println(" [파싱된 Age (3자리)] : [" + result.getAge() + "]");
System.out.println(" [원본 MCI 전문] : [" + rawMciString + "]");
System.out.println(" [파싱된 ID (10자리)] : [" + result.getCustomerId() + "]");
System.out.println(" [파싱된 Name (15자리)] : [" + result.getName() + "]");
System.out.println(" [파싱된 Age (3자리)] : [" + result.getAge() + "]");
System.out.println("==================================================");
assertNotNull(result);