diff --git a/app/Services/CommonService.php b/app/Services/CommonService.php index f23c213..4adc8c8 100644 --- a/app/Services/CommonService.php +++ b/app/Services/CommonService.php @@ -148,6 +148,7 @@ abstract class CommonService $formDatas = (array)$dto; //입력값 검증 if (!$this->getFormService()->validate($formDatas)) { + log_message("error", implode("\n", service('validation')->getErrors())); throw new ValidationException(implode("\n", service('validation')->getErrors())); } return $this->create_process($formDatas);