From c93a2035dd7f3974a0e564ec3b2bdf94cad0358d Mon Sep 17 00:00:00 2001 From: jjstyle Date: Wed, 4 Feb 2026 20:09:52 +0900 Subject: [PATCH] =?UTF-8?q?=EC=A0=80=EC=9E=A5=20=EC=8B=A4=ED=8C=A8?= =?UTF-8?q?=EC=8B=9C=20=EC=83=81=EC=84=B8=20=EB=A1=9C=EA=B7=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Services/Handlers/TypeV2Handler.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Services/Handlers/TypeV2Handler.php b/app/Services/Handlers/TypeV2Handler.php index afa57dd..457e442 100644 --- a/app/Services/Handlers/TypeV2Handler.php +++ b/app/Services/Handlers/TypeV2Handler.php @@ -93,12 +93,14 @@ class TypeV2Handler // 기사 정보 추가 저장 $articleInfoEtcParam['vr_sq'] = $vrSq; if (!$this->articleInfoEtcModel->replace($articleInfoEtcParam)) { + CLI::write(CLI::color('❌ ArticleInfoEtc 저장 실패 :: ' . json_encode($articleInfoEtcParam), 'red')); throw new Exception("ArticleInfoEtc Insert 실패: " . json_encode($this->db->error())); } CLI::write(CLI::color('✅ ArticleInfoEtc 저장 성공', 'blue')); // 수정 정보 입력 (있으면 update, 없으면 insert) if (!$this->modifyInfoModel->saveModifyInfo($vrSq, $modifyInfoParam)) { + CLI::write(CLI::color('❌ ModifyInfo 저장 실패 :: ' . json_encode($modifyInfoParam), 'red')); throw new Exception("ModifyInfo 저장 실패: " . json_encode($this->db->error() . "sql: " . $this->modifyInfoModel->getLastQuery())); } CLI::write(CLI::color('✅ ModifyInfo 저장 성공', 'blue'));