From 6bed688be051049252e8f06f248b4fff2952636e Mon Sep 17 00:00:00 2001 From: jjstyle Date: Wed, 4 Feb 2026 20:19:07 +0900 Subject: [PATCH] =?UTF-8?q?=EC=98=A4=EB=A5=98=20=ED=99=95=EC=9D=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Services/Handlers/TypeV2Handler.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/Services/Handlers/TypeV2Handler.php b/app/Services/Handlers/TypeV2Handler.php index c662ebc..32cc690 100644 --- a/app/Services/Handlers/TypeV2Handler.php +++ b/app/Services/Handlers/TypeV2Handler.php @@ -100,8 +100,12 @@ class TypeV2Handler // 수정 정보 입력 (있으면 update, 없으면 insert) if (!$this->modifyInfoModel->saveModifyInfo($vrSq, $modifyInfoParam)) { + foreach ( $modifyInfoParam as $key => $value ) { + if (is_array($value)) { + CLI::write(CLI::color(" $key : " . json_encode($value, JSON_UNESCAPED_UNICODE) , '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'));