From fef656243cd6d80a6c0886ac6db31f19a0bca384 Mon Sep 17 00:00:00 2001 From: jjstyle Date: Wed, 4 Feb 2026 20:15:07 +0900 Subject: [PATCH] =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Services/Handlers/TypeV2Handler.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Services/Handlers/TypeV2Handler.php b/app/Services/Handlers/TypeV2Handler.php index 457e442..c662ebc 100644 --- a/app/Services/Handlers/TypeV2Handler.php +++ b/app/Services/Handlers/TypeV2Handler.php @@ -100,7 +100,8 @@ class TypeV2Handler // 수정 정보 입력 (있으면 update, 없으면 insert) if (!$this->modifyInfoModel->saveModifyInfo($vrSq, $modifyInfoParam)) { - CLI::write(CLI::color('❌ ModifyInfo 저장 실패 :: ' . json_encode($modifyInfoParam), 'red')); + CLI::write(CLI::color('❌ ModifyInfo 저장 실패 :: ' . json_encode($modifyInfoParam , JSON_UNESCAPED_UNICODE), 'red')); + CLI::write(CLI::color('❌ ModifyInfo 저장 쿼리 :: ' . $this->modifyInfoModel->getLastQuery() , 'red')); throw new Exception("ModifyInfo 저장 실패: " . json_encode($this->db->error() . "sql: " . $this->modifyInfoModel->getLastQuery())); } CLI::write(CLI::color('✅ ModifyInfo 저장 성공', 'blue'));