From af3ff49682040fa5592ca215271a607bb43efe8a Mon Sep 17 00:00:00 2001 From: "choi.jh" Date: Fri, 4 Jul 2025 18:36:10 +0900 Subject: [PATCH] dbms_init...1 --- app/Config/Constants.php | 5 +- app/Config/Routes.php | 1 + app/Controllers/Admin/AdminController.php | 2 - .../Admin/Customer/ServiceController.php | 30 +++-- .../Admin/Customer/ServiceItemController.php | 5 +- .../Customer/ServicePaymentController.php | 26 ++-- .../Admin/Equipment/Part/DomainController.php | 53 +++++++- .../Admin/Equipment/Part/LineController.php | 8 +- .../Admin/Equipment/ServerController.php | 5 +- app/Controllers/Admin/UserController.php | 4 +- app/Controllers/Auth/GoogleController.php | 4 +- app/Controllers/Auth/LocalController.php | 4 +- app/Controllers/CommonController.php | 114 +++++++++-------- app/Database/dbms_init_all.sql | 15 +-- app/Database/erp2_2.vuerd.json | 120 +++--------------- app/Helpers/Equipment/Part/DomainHelper.php | 2 +- app/Language/en/Equipment/Part/Domain.php | 1 - app/Models/Equipment/Part/DomainModel.php | 4 - app/Services/Equipment/Part/DomainService.php | 5 +- app/Views/admin/domain/view.php | 20 +++ app/Views/layouts/admin.php | 12 +- .../templates/admin/form_content_top.php | 49 +------ public/js/admin/form.js | 31 +++++ 23 files changed, 251 insertions(+), 269 deletions(-) create mode 100644 app/Views/admin/domain/view.php diff --git a/app/Config/Constants.php b/app/Config/Constants.php index 79867b5..064c53c 100644 --- a/app/Config/Constants.php +++ b/app/Config/Constants.php @@ -331,8 +331,6 @@ define('LAYOUTS', [ '', '', '', - '', - '', '', ], 'javascripts' => [ @@ -363,6 +361,7 @@ define('LAYOUTS', [ '', '', '', + '', '', ], 'javascripts' => [ @@ -370,6 +369,8 @@ define('LAYOUTS', [ '', '', '', + '', + '' ], ], ]); diff --git a/app/Config/Routes.php b/app/Config/Routes.php index c0e3e15..c8d6d69 100644 --- a/app/Config/Routes.php +++ b/app/Config/Routes.php @@ -299,6 +299,7 @@ $routes->group('admin', ['namespace' => 'App\Controllers\Admin', 'filter' => 'au $routes->post('batchjob', 'DomainController::batchjob'); $routes->post('batchjob_delete', 'DomainController::batchjob_delete'); $routes->get('download/(:alpha)', 'DomainController::download/$1'); + $routes->post('confirm', 'DomainController::confirm'); }); }); }); diff --git a/app/Controllers/Admin/AdminController.php b/app/Controllers/Admin/AdminController.php index 5b471be..e71b87a 100644 --- a/app/Controllers/Admin/AdminController.php +++ b/app/Controllers/Admin/AdminController.php @@ -16,8 +16,6 @@ abstract class AdminController extends CommonController $this->uri_path = "admin/"; $this->view_path = "admin" . DIRECTORY_SEPARATOR; $this->content_title = "관리자"; - $this->individualStylesheets = []; - $this->individualScripts = []; $this->helper = $this->getHelper(); } } diff --git a/app/Controllers/Admin/Customer/ServiceController.php b/app/Controllers/Admin/Customer/ServiceController.php index 8366c05..230340a 100644 --- a/app/Controllers/Admin/Customer/ServiceController.php +++ b/app/Controllers/Admin/Customer/ServiceController.php @@ -68,33 +68,38 @@ class ServiceController extends CustomerController } //Index,FieldForm관련 //추가관련 - protected function create_process(array $formDatas): mixed + protected function create_process(array $formDatas): void { //수정자 정보 자동추가용 $formDatas['user_uid'] = $this->getMyAuth()->getUIDByAuthInfo(); - return parent::create_process($formDatas); + //부모처리 + parent::create_process($formDatas); } //수정관련 - protected function modify_process(mixed $entity, array $formDatas): mixed + protected function modify_process(mixed $entity, array $formDatas): void { //수정자 정보 자동추가용 $formDatas['user_uid'] = $this->getMyAuth()->getUIDByAuthInfo(); - return parent::modify_process($entity, $formDatas); + //부모처리 + parent::modify_process($entity, $formDatas); } //View 관련 - protected function view_process(mixed $entity): mixed + protected function view_process(mixed $entity): void { //LINE,IP,SERVER등 추가 FilterOption 셋팅용 $this->setFilterOptionsByItemType(); //각각의 Item항목 정의 - return $this->getService()->setItemEntitiesByService($entity); + $this->getService()->setItemEntitiesByService($entity); + //부모처리 + parent::view_process($entity); } //Delete 관련 - protected function delete_process(mixed $entity): mixed + protected function delete_process(mixed $entity): void { //각각의 Item항목 정의 $entity = $this->getService()->setItemEntitiesByService($entity); - return parent::delete_process($entity); + //부모처리 + parent::delete_process($entity); } //List 관련 protected function setWordConditionForList(): void @@ -108,17 +113,20 @@ class ServiceController extends CustomerController } } } - protected function index_process(): array + protected function index_process(): void { //서비스별 미납 Count $this->unPaids = $this->getServicePaymentService()->getUnPaidCountByService(); //LINE,IP,SERVER등 추가 FilterOption 셋팅용 $this->setFilterOptionsByItemType(); + //부모함수처리 + parent::index_process(); + //추가처리 $entities = []; - foreach (parent::index_process() as $entity) { + foreach ($this->entities as $entity) { //각각의 Item항목 정의 $entities[$entity->getPK()] = $this->getService()->setItemEntitiesByService($entity); } - return $entities; + $this->$entities = $entities; } } diff --git a/app/Controllers/Admin/Customer/ServiceItemController.php b/app/Controllers/Admin/Customer/ServiceItemController.php index e5aadba..8aafe38 100644 --- a/app/Controllers/Admin/Customer/ServiceItemController.php +++ b/app/Controllers/Admin/Customer/ServiceItemController.php @@ -88,12 +88,13 @@ class ServiceItemController extends CustomerController } //Index,FieldForm관련 - protected function create_process(array $formDatas): ServiceItemEntity + protected function create_process(array $formDatas): void { $serviceEntity = $this->getServiceService()->getEntity($formDatas['serviceinfo_uid']); if (!$serviceEntity) { throw new \Exception("{$formDatas['serviceinfo_uid']}에 대한 서비스정보를 찾을수 없습니다."); } - return parent::create_process($formDatas); + //부모처리 + parent::create_process($formDatas); } } diff --git a/app/Controllers/Admin/Customer/ServicePaymentController.php b/app/Controllers/Admin/Customer/ServicePaymentController.php index 191d535..1eac86f 100644 --- a/app/Controllers/Admin/Customer/ServicePaymentController.php +++ b/app/Controllers/Admin/Customer/ServicePaymentController.php @@ -82,25 +82,28 @@ class ServicePaymentController extends CustomerController } //Index,FieldForm관련 //추가관련 - protected function create_process(array $formDatas): mixed + protected function create_process(array $formDatas): void { //수정자 정보 자동추가용 $formDatas['user_uid'] = $this->getMyAuth()->getUIDByAuthInfo(); - return parent::create_process($formDatas); + //부모처리 + parent::create_process($formDatas); } //수정관련 - protected function modify_process(mixed $entity, array $formDatas): mixed + protected function modify_process(mixed $entity, array $formDatas): void { //수정자 정보 자동추가용 $formDatas['user_uid'] = $this->getMyAuth()->getUIDByAuthInfo(); - return parent::modify_process($entity, $formDatas); + //부모처리 + parent::modify_process($entity, $formDatas); } //View 관련 - protected function view_process(mixed $entity): mixed + protected function view_process(mixed $entity): void { //LINE,IP,SERVER등 추가 FilterOption 셋팅용 $this->setFilterOptionsByItemType(); - return parent::view_process($entity); + //부모처리 + parent::view_process($entity); } //List 관련 protected function setOrderByForList(): void @@ -109,11 +112,12 @@ class ServicePaymentController extends CustomerController $this->getService()->getModel()->orderBy('billing_at', 'ASC', false); parent::setOrderByForList(); } - protected function index_process(): array + protected function index_process(): void { //LINE,IP,SERVER등 추가 FilterOption 셋팅용 $this->setFilterOptionsByItemType(); - return parent::index_process(); + //부모처리 + parent::index_process(); } //Invoice 관련 private function getOwnersForInvoice(ClientEntity $ownerEntity): array @@ -145,7 +149,7 @@ class ServicePaymentController extends CustomerController ]; return $temps; } - private function invoice_process(): array + private function invoice_process(): void { //변경할 UIDS $uids = $this->request->getPost('batchjob_uids[]'); @@ -187,7 +191,7 @@ class ServicePaymentController extends CustomerController $entities[$ownerEntity->getPK()]['total_amount'] += $entity->getAmount(); } // dd($entities); - return $entities; + $this->entities = $entities; } public function invoice(): RedirectResponse|string { @@ -198,7 +202,7 @@ class ServicePaymentController extends CustomerController $options = $this->getService()->getServiceItemLinkService($item_type)->getEntities(); $this->setFilterFieldOption($item_type, $options); } - $this->entities = $this->invoice_process(); + $this->invoice_process(); return $this->getResultSuccess(); } catch (\Exception $e) { return $this->getResultFail($e->getMessage()); diff --git a/app/Controllers/Admin/Equipment/Part/DomainController.php b/app/Controllers/Admin/Equipment/Part/DomainController.php index 98296ea..e520c08 100644 --- a/app/Controllers/Admin/Equipment/Part/DomainController.php +++ b/app/Controllers/Admin/Equipment/Part/DomainController.php @@ -5,6 +5,7 @@ namespace App\Controllers\Admin\Equipment\Part; use App\Helpers\Equipment\Part\DomainHelper; use App\Services\Equipment\Part\DomainService; +use CodeIgniter\HTTP\RedirectResponse; use CodeIgniter\HTTP\RequestInterface; use CodeIgniter\HTTP\ResponseInterface; use Psr\Log\LoggerInterface; @@ -34,8 +35,58 @@ class DomainController extends PartController } return $this->_helper; } + protected function getResultSuccess(string $message = MESSAGES["SUCCESS"], ?string $actionTemplate = null): RedirectResponse|string + { + helper(['form']); + switch ($this->getAction()) { + case 'create': + $this->control = $this->getControlDatas(); + $this->getHelper()->setViewDatas($this->getViewDatas()); + $view_file = $this->view_path . 'domain' . DIRECTORY_SEPARATOR . 'view'; + $result = view($view_file, ['viewDatas' => $this->getViewDatas()]); + break; + default: + $result = parent::getResultSuccess($message, $actionTemplate); + break; + } + return $result; + } //Index,FieldForm관련 - + protected function create_process(array $formDatas): void + { + $entities = []; + //formDatas는 Json 값으로 넘어온다. + foreach (json_decode($formDatas['domain'], true) as $domain) { + //데이터 검증 + $validDatas = $this->doValidate( + $this->getFieldRules(), + ['domain' => $domain['value'], 'status' => $formDatas['status']] + ); + $entities[] = $this->getService()->create($validDatas); + } + $this->entities = $entities; + } + //도메인 존재여부 검증용 + final public function confirm(string $field = "domain"): ResponseInterface + { + try { + //각 Field 초기화:조건항목 Field는 한개만 존재하므로 Field와 Rule을 정의 + $this->setAction(__FUNCTION__); + $this->setFormFields([$field]); + $this->setFieldRule($field, $this->getFormFieldRule($this->getAction(), $field)); + //입력값정의 + $domain = $this->request->getVar($field); + //기존 존재하는 Domain인지 확인용 Entity 가져오기 + $entity = $this->getService()->getEntity([$field => $domain], ""); + return $this->response + ->setContentType('application/json') + ->setBody(json_encode(['exists' => true, 'message' => "[{$entity->getTitle()}] 이미 존재하는 도메인입니다."])); + } catch (\Exception $e) { + return $this->response + ->setContentType('application/json') + ->setBody(json_encode(['exists' => false, 'message' => $e->getMessage()])); + } + } protected function setOrderByForList(): void { //OrderBy 처리 diff --git a/app/Controllers/Admin/Equipment/Part/LineController.php b/app/Controllers/Admin/Equipment/Part/LineController.php index 8cffed5..d55d595 100644 --- a/app/Controllers/Admin/Equipment/Part/LineController.php +++ b/app/Controllers/Admin/Equipment/Part/LineController.php @@ -48,17 +48,17 @@ class LineController extends PartController //Index,FieldForm관련 //생성 - protected function create_process(array $formDatas): LineEntity + protected function create_process(array $formDatas): void { //Line 등록 if (!$this->getHelper()->isValidCIDR($formDatas['bandwith'])) { throw new \Exception("{$formDatas['bandwith']}는 CIDR 형식에 부합되지 않습니다."); } - $entity = parent::create_process($formDatas); + //부모처리 + parent::create_process($formDatas); //Prefixed IP to array 등록 foreach ($this->getHelper()->cidrToIpRange($formDatas['bandwith']) as $ip) { - $this->getIpService()->createByLineInfo($entity, $ip); + $this->getIpService()->createByLineInfo($this->entity, $ip); } - return $entity; } } diff --git a/app/Controllers/Admin/Equipment/ServerController.php b/app/Controllers/Admin/Equipment/ServerController.php index b54d66a..4112bcd 100644 --- a/app/Controllers/Admin/Equipment/ServerController.php +++ b/app/Controllers/Admin/Equipment/ServerController.php @@ -36,7 +36,7 @@ class ServerController extends EquipmentController } //Index,FieldForm관련 //View부분 - protected function view_process(mixed $entity): mixed + protected function view_process(mixed $entity): void { foreach (SERVICE_ITEM_TYPES as $item_type => $label) { $entity->setItemEntities( @@ -44,7 +44,8 @@ class ServerController extends EquipmentController $this->getService()->getEntities(['serviceinfo_uid' => $entity->getPK(), 'item_type' => $item_type]) ); } - return parent::view_process($entity); + //부모처리 + parent::view_process($entity); } //List부분 protected function setOrderByForList(): void diff --git a/app/Controllers/Admin/UserController.php b/app/Controllers/Admin/UserController.php index 6f7cf79..b4d46dd 100644 --- a/app/Controllers/Admin/UserController.php +++ b/app/Controllers/Admin/UserController.php @@ -118,8 +118,8 @@ class UserController extends AdminController protected function profile_modify_process(mixed $entity, array $formDatas): mixed { //데이터 검증 - $formDatas = $this->doValidate($this->getFieldRules(), $formDatas); - return $this->getService()->modify($entity, $formDatas); + $validDatas = $this->doValidate($this->getFieldRules(), $formDatas); + return $this->getService()->modify($entity, $validDatas); } final public function profile_modify(int $uid): RedirectResponse|string { diff --git a/app/Controllers/Auth/GoogleController.php b/app/Controllers/Auth/GoogleController.php index 11e3001..8d48fc1 100644 --- a/app/Controllers/Auth/GoogleController.php +++ b/app/Controllers/Auth/GoogleController.php @@ -41,11 +41,11 @@ class GoogleController extends AuthController } //로그인처리 - protected function create_process(array $formDatas): UserEntity + protected function create_process(array $formDatas): void { if (!array_key_exists('access_code', $formDatas) || !$formDatas['access_code']) { throw new \Exception("구글 로그인 실패"); } - return $this->getService()->login($formDatas); + $this->entity = $this->getService()->login($formDatas); } } diff --git a/app/Controllers/Auth/LocalController.php b/app/Controllers/Auth/LocalController.php index 44fd5f6..a1ae76e 100644 --- a/app/Controllers/Auth/LocalController.php +++ b/app/Controllers/Auth/LocalController.php @@ -29,8 +29,8 @@ class LocalController extends AuthController return ""; } //로그인처리 - protected function create_process(array $formDatas): UserEntity + protected function create_process(array $formDatas): void { - return $this->getService()->login($formDatas); + $this->entity = $this->getService()->login($formDatas); } } diff --git a/app/Controllers/CommonController.php b/app/Controllers/CommonController.php index f22b4df..3f73df0 100644 --- a/app/Controllers/CommonController.php +++ b/app/Controllers/CommonController.php @@ -218,6 +218,7 @@ abstract class CommonController extends BaseController if (!$validation) { $validation = service('validation'); } + // dd($rules); foreach ($rules as $field => $rule) { $validation = $this->setValidation($validation, $field, $rule); } @@ -242,6 +243,7 @@ abstract class CommonController extends BaseController } protected function getResultSuccess(string $message = MESSAGES["SUCCESS"], ?string $actionTemplate = null): RedirectResponse|string { + helper(['form']); switch ($this->getAction()) { case 'create': case 'modify': @@ -295,11 +297,11 @@ abstract class CommonController extends BaseController return $this->getResultFail($e->getMessage()); } } - protected function create_process(array $formDatas): mixed + protected function create_process(array $formDatas): void { //데이터 검증 - $formDatas = $this->doValidate($this->getFieldRules(), $formDatas); - return $this->getService()->create($formDatas); + $validDatas = $this->doValidate($this->getFieldRules(), $formDatas); + $this->entity = $this->getService()->create($validDatas); } final public function create(): RedirectResponse|string { @@ -313,7 +315,7 @@ abstract class CommonController extends BaseController $formDatas[$field] = $this->request->getPost($field); } // dd($formDatas); - $this->entity = $this->create_process($formDatas); + $this->create_process($formDatas); $this->getService()->getModel()->transCommit(); return $this->getResultSuccess(); } catch (\Exception $e) { @@ -322,9 +324,9 @@ abstract class CommonController extends BaseController } } //수정관련 - protected function modify_form_process(mixed $entity): mixed + protected function modify_form_process(mixed $entity): void { - return $entity; + $this->entity = $entity; } final public function modify_form(mixed $uid): RedirectResponse|string { @@ -345,18 +347,18 @@ abstract class CommonController extends BaseController if (!$entity) { throw new \Exception("{$uid}에 대한 정보를 찾을수 없습니다."); } - $this->entity = $this->modify_form_process($entity); + $this->modify_form_process($entity); $this->forms = ['attributes' => ['method' => "post",], 'hiddens' => []]; return $this->getResultSuccess(); } catch (\Exception $e) { return $this->getResultFail($e->getMessage()); } } - protected function modify_process(mixed $entity, array $formDatas): mixed + protected function modify_process(mixed $entity, array $formDatas): void { //데이터 검증 - $formDatas = $this->doValidate($this->getFieldRules(), $formDatas); - return $this->getService()->modify($entity, $formDatas); + $validDatas = $this->doValidate($this->getFieldRules(), $formDatas); + $this->entity = $this->getService()->modify($entity, $validDatas); } final public function modify(int $uid): RedirectResponse|string { @@ -375,7 +377,7 @@ abstract class CommonController extends BaseController if (!$entity) { throw new \Exception("{$uid}에 대한 정보를 찾을수 없습니다."); } - $this->entity = $this->modify_process($entity, $formDatas); + $this->modify_process($entity, $formDatas); $this->getService()->getModel()->transCommit(); return $this->getResultSuccess(); } catch (\Exception $e) { @@ -384,10 +386,11 @@ abstract class CommonController extends BaseController } } //단일필드작업 - final protected function toggle_process(mixed $entity, array $formDatas): mixed + final protected function toggle_process(mixed $entity, array $formDatas): void { - //modify_process를 호출하여 수정처리 - return $this->modify_process($entity, $formDatas); + //데이터 검증 + $validDatas = $this->doValidate($this->getFieldRules(), $formDatas); + $this->entity = $this->getService()->modify($entity, $validDatas); } final public function toggle(mixed $uid, string $field): RedirectResponse|string { @@ -405,7 +408,7 @@ abstract class CommonController extends BaseController if (!$entity) { throw new \Exception("{$uid}에 대한 정보를 찾을수 없습니다."); } - $this->entity = $this->toggle_process($entity, $formDatas); + $this->toggle_process($entity, $formDatas); $this->getService()->getModel()->transCommit(); return $this->getResultSuccess(); } catch (\Exception $e) { @@ -414,10 +417,21 @@ abstract class CommonController extends BaseController } } //일괄처리작업 - final protected function batchjob_process(mixed $entity, array $formDatas): mixed + final protected function batchjob_process(array $uids, array $formDatas): void { - //modify_process를 호출하여 수정처리 - return $this->modify_process($entity, $formDatas); + $entities = []; + foreach ($uids as $uid) { + //기존 Entity 가져오기 + $entity = $this->getService()->getEntity($uid); + if (!$entity) { + LogCollector::debug(__METHOD__ . "에서 {$uid}에 대한 정보를 찾을수 없습니다."); + } else { + //데이터 검증 + $validDatas = $this->doValidate($this->getFieldRules(), $formDatas); + $entities[] = $this->getService()->modify($entity, $validDatas); + } + } + $this->entities = $entities; } final public function batchjob(): RedirectResponse|string { @@ -448,19 +462,9 @@ abstract class CommonController extends BaseController foreach ($selectedFields as $field) { $this->setFieldRule($field, $this->getFormFieldRule($this->getAction(), $field)); } - $entities = []; - foreach ($uids as $uid) { - //기존 Entity 가져오기 - $entity = $this->getService()->getEntity($uid); - if (!$entity) { - LogCollector::debug(__METHOD__ . "에서 {$uid}에 대한 정보를 찾을수 없습니다."); - } else { - $entities[] = $this->batchjob_process($entity, $formDatas); - } - } - $this->entities = $entities; + $this->batchjob_process($uids, $formDatas); $this->getService()->getModel()->transCommit(); - LogCollector::debug(sprintf("%s에서 총 %s개중 %s개 일괄작업을 완료하였습니다.", __METHOD__, count($uids), count($entities))); + LogCollector::debug(sprintf("%s에서 총 %s개중 %s개 일괄작업을 완료하였습니다.", __METHOD__, count($uids), count($this->entities))); return $this->getResultSuccess(); } catch (\Exception $e) { $this->getService()->getModel()->transRollback(); @@ -469,9 +473,9 @@ abstract class CommonController extends BaseController } //삭제,일괄삭제 공통사용 - protected function delete_process(mixed $entity): mixed + protected function delete_process(mixed $entity): void { - return $this->getService()->delete($entity); + $this->entity = $this->getService()->delete($entity); } final public function delete(mixed $uid): RedirectResponse|string { @@ -485,7 +489,7 @@ abstract class CommonController extends BaseController if (!$entity) { throw new \Exception("{$uid}에 대한 정보를 찾을수 없습니다."); } - $this->entity = $this->delete_process($entity); + $this->delete_process($entity); $this->getService()->getModel()->transCommit(); return $this->getResultSuccess(); } catch (\Exception $e) { @@ -494,10 +498,19 @@ abstract class CommonController extends BaseController } } //일괄삭제 - final protected function batchjob_delete_process(mixed $entity): mixed + final protected function batchjob_delete_process(array $uids): void { - //delete_process를 호출하여 삭제처리 - return $this->delete_process($entity); + $entities = []; + foreach ($uids as $uid) { + //기존 Entity 가져오기 + $entity = $this->getService()->getEntity($uid); + if (!$entity) { + LogCollector::debug(__METHOD__ . "에서 {$uid}에 대한 정보를 찾을수 없습니다."); + } else { + $entities[] = $this->getService()->delete($entity); + } + } + $this->entities = $entities; } final public function batchjob_delete(): RedirectResponse|string { @@ -511,19 +524,9 @@ abstract class CommonController extends BaseController } //각 Field 초기화:삭제는 다른 초기화 필요없음 $this->setAction(__FUNCTION__); - $entities = []; - foreach ($uids as $uid) { - //기존 Entity 가져오기 - $entity = $this->getService()->getEntity($uid); - if (!$entity) { - LogCollector::debug(__METHOD__ . "에서 {$uid}에 대한 정보를 찾을수 없습니다."); - } else { - $entities[] = $this->batchjob_delete_process($entity); - } - } - $this->entities = $entities; + $this->batchjob_delete_process($uids); $this->getService()->getModel()->transCommit(); - LogCollector::debug(sprintf("%s에서 총 %s개중 %s개 일괄삭제를 완료하였습니다.", __METHOD__, count($uids), count($entities))); + LogCollector::debug(sprintf("%s에서 총 %s개중 %s개 일괄삭제를 완료하였습니다.", __METHOD__, count($uids), count($this->entities))); return $this->getResultSuccess(); } catch (\Exception $e) { $this->getService()->getModel()->transRollback(); @@ -532,9 +535,9 @@ abstract class CommonController extends BaseController } //View - protected function view_process(mixed $entity): mixed + protected function view_process(mixed $entity): void { - return $entity; + $this->entity = $entity; } final public function view(string $uid): RedirectResponse|string { @@ -558,7 +561,7 @@ abstract class CommonController extends BaseController $this->$field = $value; } } - $this->entity = $this->view_process($entity); + $this->view_process($entity); $this->forms = ['attributes' => ['method' => "post",], 'hiddens' => []]; return $this->getResultSuccess(); } catch (\Exception $e) { @@ -640,7 +643,7 @@ abstract class CommonController extends BaseController $this->total_page = $pager->getPageCount($pager_group); return $pager->links($pager_group, $template); } - protected function index_process(): array + protected function index_process(): void { //조건절 처리 $this->setConditionForList(); @@ -655,7 +658,7 @@ abstract class CommonController extends BaseController $this->setOrderByForList(); $this->getService()->getModel()->limit($this->per_page); $this->getService()->getModel()->offset(($this->page - 1) * $this->per_page); - return $this->getService()->getEntities(); + $this->entities = $this->getService()->getEntities(); } public function index(): RedirectResponse|string { @@ -670,7 +673,7 @@ abstract class CommonController extends BaseController } // 현재 URL을 스택에 저장 helper(['form']); - $this->entities = $this->index_process(); + $this->index_process(); return $this->getResultSuccess(); } catch (\Exception $e) { return $e->getMessage(); @@ -708,8 +711,7 @@ abstract class CommonController extends BaseController case 'excel': case 'pdf': helper(['form']); - // string buffer에서 읽어오는 경우 - $this->entities = $this->index_process(); + $this->index_process(); $html = $this->getResultSuccess(); //data loading $reader = new Html(); diff --git a/app/Database/dbms_init_all.sql b/app/Database/dbms_init_all.sql index fe39585..cd3be45 100644 --- a/app/Database/dbms_init_all.sql +++ b/app/Database/dbms_init_all.sql @@ -246,16 +246,13 @@ DROP TABLE IF EXISTS `domaininfo`; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `domaininfo` ( `uid` int(11) NOT NULL AUTO_INCREMENT, - `clientinfo_uid` int(11) NOT NULL, `domain` varchar(20) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'default', `updated_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`uid`), - UNIQUE KEY `UQ_domain` (`domain`), - KEY `FK_clientinfo_TO_domaininfo` (`clientinfo_uid`), - CONSTRAINT `FK_clientinfo_TO_domaininfo` FOREIGN KEY (`clientinfo_uid`) REFERENCES `clientinfo` (`uid`) + UNIQUE KEY `UQ_domain` (`domain`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='도메인 정보'; /*!40101 SET character_set_client = @saved_cs_client */; @@ -265,7 +262,7 @@ CREATE TABLE `domaininfo` ( LOCK TABLES `domaininfo` WRITE; /*!40000 ALTER TABLE `domaininfo` DISABLE KEYS */; -INSERT INTO `domaininfo` VALUES (1,2,'Ckoa.kk','default',NULL,'2025-06-09 08:44:41',NULL); +INSERT INTO `domaininfo` VALUES (1,'Ckoa.kk','default',NULL,'2025-06-09 08:44:41',NULL); /*!40000 ALTER TABLE `domaininfo` ENABLE KEYS */; UNLOCK TABLES; @@ -419,7 +416,7 @@ CREATE TABLE `logger` ( PRIMARY KEY (`uid`), KEY `FK_user_TO_logger` (`user_uid`), CONSTRAINT `FK_user_TO_logger` FOREIGN KEY (`user_uid`) REFERENCES `user` (`uid`) -) ENGINE=InnoDB AUTO_INCREMENT=231 DEFAULT CHARSET=utf8 COMMENT='작업 기록 로그'; +) ENGINE=InnoDB AUTO_INCREMENT=238 DEFAULT CHARSET=utf8 COMMENT='작업 기록 로그'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -428,7 +425,7 @@ CREATE TABLE `logger` ( LOCK TABLES `logger` WRITE; /*!40000 ALTER TABLE `logger` DISABLE KEYS */; -INSERT INTO `logger` VALUES (1,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:22:57[debug]: 입력내용\n13:22:57[debug]: array (\n 'serviceinfo_uid' => '3',\n 'item_type' => 'STORAGE',\n 'item_uid' => '1',\n 'billing_cycle' => 'onetime',\n 'price' => '100000',\n 'amount' => '50000',\n 'start_at' => '2025-06-17',\n 'status' => 'default',\n)\n13:22:57[debug]: [67/STORAGE] 입력 후 내용\n13:22:57[debug]: array (\n 'serviceinfo_uid' => '3',\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'price' => 100000,\n 'amount' => 50000,\n 'start_at' => '2025-06-17',\n 'status' => 'default',\n 'uid' => 67,\n)\n13:22:57[info]: [STORAGE]생성되었습니다.:\n13:22:57[debug]: 입력내용\n13:22:57[debug]: array (\n 'serviceinfo_uid' => 3,\n 'ownerinfo_uid' => 4,\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'amount' => 50000,\n 'billing_at' => '2025-07-18',\n 'issue_at' => '2025-06-18',\n)\n13:22:57[debug]: [68/STORAGE] 입력 후 내용\n13:22:57[debug]: array (\n 'serviceinfo_uid' => 3,\n 'ownerinfo_uid' => 4,\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'amount' => 50000,\n 'billing_at' => '2025-07-18',\n 'issue_at' => '2025-06-18',\n 'uid' => 68,\n)\n13:22:57[info]: [STORAGE]생성되었습니다.:','default',NULL,'2025-06-18 04:22:57',NULL),(2,1,'Customer/ServiceItem','getResultFail','Undefined array key \"DOMAIN\"','15:59:32[debug]: Undefined array key "DOMAIN"','default',NULL,'2025-06-18 06:59:32',NULL),(3,1,'Customer/ServiceItem','getResultFail','Undefined array key \"DEFENCE\"','15:59:50[debug]: Undefined array key "DEFENCE"','default',NULL,'2025-06-18 06:59:50',NULL),(4,1,'Customer/ServiceItem','getResultFail','Undefined array key \"SERVER\"','16:01:25[debug]: Undefined array key "SERVER"','default',NULL,'2025-06-18 07:01:25',NULL),(5,1,'Customer/ServiceItem','getResultFail','Undefined array key \"CPU\"','16:32:17[debug]: Undefined array key "CPU"','default',NULL,'2025-06-18 07:32:17',NULL),(6,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','16:32:27[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 07:32:27',NULL),(7,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','16:45:06[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 07:45:06',NULL),(8,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','16:48:07[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 07:48:07',NULL),(9,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','16:49:13[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 07:49:13',NULL),(10,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:00:15[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:00:15',NULL),(11,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:00:54[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:00:54',NULL),(12,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RA\"','17:05:22[debug]: Undefined array key "RA"','default',NULL,'2025-06-18 08:05:22',NULL),(13,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:05:30[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:05:30',NULL),(14,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:07:50[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:07:50',NULL),(15,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:09:10[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:09:10',NULL),(16,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:09:49[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:09:49',NULL),(17,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:09:55[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:09:55',NULL),(18,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:11:03[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:11:03',NULL),(19,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:11:49[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:11:49',NULL),(20,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:13:47[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:13:47',NULL),(21,1,'Customer/ServiceItem','getResultFail','getFormFieldOption에서 item_type이 지정되지 않았습니다.','17:14:45[debug]: getFormFieldOption에서 item_type이 지정되지 않았습니다.','default',NULL,'2025-06-18 08:14:45',NULL),(22,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:16:43[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:16:43',NULL),(23,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:20:49[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:20:49',NULL),(24,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:21:41[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:21:41',NULL),(25,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:24:39[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:24:39',NULL),(26,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:26:34[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:26:34',NULL),(27,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:32:27[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:32:27',NULL),(28,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','17:37:15[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-18 08:37:15',NULL),(29,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','17:37:16[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 08:37:16',NULL),(30,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','17:37:58[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-18 08:37:58',NULL),(31,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','17:37:58[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 08:37:58',NULL),(32,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','17:42:05[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-18 08:42:05',NULL),(33,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','17:42:05[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 08:42:05',NULL),(34,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','17:45:02[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-18 08:45:02',NULL),(35,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','17:45:02[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 08:45:02',NULL),(36,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','17:48:55[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-18 08:48:55',NULL),(37,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','17:48:55[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 08:48:55',NULL),(38,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','17:50:46[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-18 08:50:46',NULL),(39,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','17:50:46[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 08:50:46',NULL),(40,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','18:25:49[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-18 09:25:49',NULL),(41,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','18:25:49[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 09:25:49',NULL),(42,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','18:48:54[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 09:48:54',NULL),(43,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','18:48:54[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 09:48:54',NULL),(44,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','18:49:21[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 09:49:21',NULL),(45,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','18:49:21[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 09:49:21',NULL),(46,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','19:05:56[debug]: 입력내용\n19:05:56[debug]: array (\n 'serviceinfo_uid' => '3',\n 'item_type' => 'CPU',\n 'item_uid' => '1',\n 'billing_cycle' => 'onetime',\n 'price' => '10000',\n 'amount' => '10000',\n 'start_at' => '2025-06-18',\n 'status' => 'default',\n)\n19:05:56[debug]: [68/CPU] 입력 후 내용\n19:05:56[debug]: array (\n 'serviceinfo_uid' => '3',\n 'item_type' => 'CPU',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'price' => 10000,\n 'amount' => 10000,\n 'start_at' => '2025-06-18',\n 'status' => 'default',\n 'uid' => 68,\n)\n19:05:56[info]: [CPU]생성되었습니다.:\n19:05:56[debug]: 입력내용\n19:05:56[debug]: array (\n 'serviceinfo_uid' => 3,\n 'ownerinfo_uid' => 4,\n 'item_type' => 'CPU',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'amount' => 10000,\n 'billing_at' => '2025-07-18',\n 'issue_at' => '2025-06-18',\n)\n19:05:56[debug]: [69/CPU] 입력 후 내용\n19:05:56[debug]: array (\n 'serviceinfo_uid' => 3,\n 'ownerinfo_uid' => 4,\n 'item_type' => 'CPU',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'amount' => 10000,\n 'billing_at' => '2025-07-18',\n 'issue_at' => '2025-06-18',\n 'uid' => 69,\n)\n19:05:56[info]: [CPU]생성되었습니다.:','default',NULL,'2025-06-18 10:05:56',NULL),(47,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','14:15:52[debug]: Undefined array key 1','default',NULL,'2025-06-19 05:15:52',NULL),(48,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','14:16:08[debug]: Undefined array key 1','default',NULL,'2025-06-19 05:16:08',NULL),(49,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','14:17:23[debug]: Undefined array key 1','default',NULL,'2025-06-19 05:17:23',NULL),(50,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','14:21:10[debug]: Undefined array key 1','default',NULL,'2025-06-19 05:21:10',NULL),(51,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','14:21:57[debug]: Undefined array key 1','default',NULL,'2025-06-19 05:21:57',NULL),(52,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','15:38:33[debug]: Undefined array key 1','default',NULL,'2025-06-19 06:38:33',NULL),(53,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','15:40:29[debug]: Undefined array key 1','default',NULL,'2025-06-19 06:40:29',NULL),(54,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','15:41:26[debug]: Undefined array key 1','default',NULL,'2025-06-19 06:41:26',NULL),(55,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','15:42:28[debug]: Undefined array key 1','default',NULL,'2025-06-19 06:42:28',NULL),(56,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','15:42:40[debug]: Undefined array key 1','default',NULL,'2025-06-19 06:42:40',NULL),(57,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','08:55:26[debug]: 입력내용\n08:55:26[debug]: array (\n 'id' => 'test1111222',\n 'passwd' => '1234',\n 'confirmpassword' => '1234',\n 'name' => 'test111122',\n 'email' => 'test112@co.kr',\n 'mobile' => 'asdfsfd',\n 'role' => 'manager',\n)\n08:55:26[debug]: [42/test111122] 입력 후 내용\n08:55:26[debug]: array (\n 'id' => 'test1111222',\n 'passwd' => '$2y$10$eS3FE/GgRZv8p02dYu4C4O1lze5lnHrD9BwzzMgs.0uP5zqSTWMvC',\n 'confirmpassword' => '$2y$10$qdy/FuAzx4LVvrVdREEvwOqGwpc5KHk5g/lxMuvSnPDKUx38phRNu',\n 'name' => 'test111122',\n 'email' => 'test112@co.kr',\n 'mobile' => 'asdfsfd',\n 'role' => 'manager',\n 'uid' => 42,\n)\n08:55:26[info]: [test111122]생성되었습니다.:','default',NULL,'2025-06-19 23:55:26',NULL),(58,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe confirmpassword field does not match the passwd field.','08:56:22[debug]: User 작업 데이터 검증 오류발생\nThe confirmpassword field does not match the passwd field.','default',NULL,'2025-06-19 23:56:22',NULL),(59,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','08:56:32[debug]: [41/test333334] 변경 전 내용\n08:56:32[debug]: array (\n 'id' => 'test33333433',\n 'passwd' => '12341234',\n 'confirmpassword' => '12341234',\n 'name' => 'test33333433',\n 'email' => 'test@test.co.kr233',\n 'mobile' => '111111222233',\n 'role' => 'manager,cloudflare,firewall',\n)\n08:56:32[debug]: array (\n 'uid' => '41',\n 'id' => 'test333334',\n 'passwd' => '$2y$10$eQXPQIvkuvnBc11hURs/K.mO44cHovtEdVpQ9QMLbu7H7bsspmJEO',\n 'name' => 'test333334',\n 'email' => 'test@test.co.kr2',\n 'mobile' => '1111112222',\n 'role' => 'manager,cloudflare',\n 'status' => 'pause',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 08:55:55.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-11 16:36:53.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n08:56:33[debug]: [41/test33333433] 변경 후 내용\n08:56:33[debug]: array (\n 'uid' => '41',\n 'id' => 'test33333433',\n 'passwd' => '$2y$10$8qFLTLnJJbRvIDLzlfauSOJvD.B.aIH6l0yKo2K7xo6m02cdXNvg.',\n 'name' => 'test33333433',\n 'email' => 'test@test.co.kr233',\n 'mobile' => '111111222233',\n 'role' => 'manager,cloudflare,firewall',\n 'status' => 'pause',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 08:56:33.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-11 16:36:53.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'confirmpassword' => '$2y$10$OgSt7eWGOTUdd3yFolpL2OXlJZXt9DXqLDqfTcckgBvOfk5Qd.1fq',\n)\n08:56:33[info]: [test33333433]수정되였습니다.:','default',NULL,'2025-06-19 23:56:33',NULL),(60,1,'Customer/Coupon','getResultSuccess','작업이 성공적으로 완료되었습니다.','08:57:35[debug]: [4/Test444] 변경 전 내용\n08:57:35[debug]: array (\n 'coupon_balance' => 10,\n)\n08:57:35[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-09 16:38:48.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n08:57:35[debug]: [4/Test444] 변경 후 내용\n08:57:35[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 10,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 08:57:35.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n08:57:35[info]: [Test444]수정되였습니다.:\n08:57:35[debug]: 입력내용\n08:57:35[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test111',\n 'amount' => '10',\n)\n08:57:35[debug]: [3/test111] 입력 후 내용\n08:57:35[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test111',\n 'amount' => '10',\n 'uid' => 3,\n)\n08:57:35[info]: [test111]생성되었습니다.:','default',NULL,'2025-06-19 23:57:35',NULL),(61,1,'Customer/Coupon','getResultFail','잔여액,잔여 쿠폰갯수:0 < 출금액 , 사용쿠폰갯수: 45보다 작습니다.','08:57:57[debug]: 잔여액,잔여 쿠폰갯수:0 < 출금액 , 사용쿠폰갯수: 45보다 작습니다.','default',NULL,'2025-06-19 23:57:57',NULL),(62,1,'Customer/Coupon','getResultFail','Undefined array key \"status\"','08:57:58[debug]: Undefined array key "status"','default',NULL,'2025-06-19 23:57:58',NULL),(63,1,'Customer/Coupon','getResultSuccess','작업이 성공적으로 완료되었습니다.','08:58:04[debug]: [4/Test444] 변경 전 내용\n08:58:04[debug]: array (\n 'coupon_balance' => 343,\n)\n08:58:04[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 10,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 08:57:35.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n08:58:04[debug]: [4/Test444] 변경 후 내용\n08:58:04[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 343,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 08:58:04.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n08:58:04[info]: [Test444]수정되였습니다.:\n08:58:04[debug]: 입력내용\n08:58:04[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test',\n 'amount' => '343',\n)\n08:58:04[debug]: [4/test] 입력 후 내용\n08:58:04[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test',\n 'amount' => '343',\n 'uid' => 4,\n)\n08:58:04[info]: [test]생성되었습니다.:','default',NULL,'2025-06-19 23:58:04',NULL),(64,1,'Customer/Coupon','getResultFail','잔여액,잔여 쿠폰갯수:0 < 출금액 , 사용쿠폰갯수: 2234보다 작습니다.','08:58:18[debug]: 잔여액,잔여 쿠폰갯수:0 < 출금액 , 사용쿠폰갯수: 2234보다 작습니다.','default',NULL,'2025-06-19 23:58:18',NULL),(65,1,'Customer/Coupon','getResultFail','Undefined array key \"status\"','08:58:18[debug]: Undefined array key "status"','default',NULL,'2025-06-19 23:58:18',NULL),(66,1,'Customer/Coupon','getResultFail','잔여액,잔여 쿠폰갯수:0 < 출금액 , 사용쿠폰갯수: 1234보다 작습니다.','08:58:36[debug]: 잔여액,잔여 쿠폰갯수:0 < 출금액 , 사용쿠폰갯수: 1234보다 작습니다.','default',NULL,'2025-06-19 23:58:36',NULL),(67,1,'Customer/Coupon','getResultFail','Undefined array key \"status\"','08:58:36[debug]: Undefined array key "status"','default',NULL,'2025-06-19 23:58:36',NULL),(68,1,'Customer/Coupon','getResultFail','Invalid file: \"admin/popup/modify_form.php\"','08:59:25[debug]: Invalid file: "admin/popup/modify_form.php"','default',NULL,'2025-06-19 23:59:25',NULL),(69,1,'Customer/Coupon','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:00:35[debug]: [4/Test444] 변경 전 내용\n09:00:35[debug]: array (\n 'coupon_balance' => 222,\n)\n09:00:35[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 343,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 08:58:04.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:00:35[debug]: [4/Test444] 변경 후 내용\n09:00:35[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 222,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:00:35.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:00:35[info]: [Test444]수정되였습니다.:\n09:00:35[debug]: 입력내용\n09:00:35[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test',\n 'amount' => '222',\n)\n09:00:35[debug]: [5/test] 입력 후 내용\n09:00:35[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test',\n 'amount' => '222',\n 'uid' => 5,\n)\n09:00:35[info]: [test]생성되었습니다.:','default',NULL,'2025-06-20 00:00:35',NULL),(70,1,'Customer/Coupon','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:28:07[debug]: [4/Test444] 변경 전 내용\n09:28:07[debug]: array (\n 'coupon_balance' => 1222,\n)\n09:28:07[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 222,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:00:35.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:28:07[debug]: [4/Test444] 변경 후 내용\n09:28:07[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 1222,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:28:07.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:28:07[info]: [Test444]수정되였습니다.:\n09:28:07[debug]: 입력내용\n09:28:07[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test222',\n 'amount' => '1000',\n)\n09:28:07[debug]: [6/test222] 입력 후 내용\n09:28:07[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test222',\n 'amount' => '1000',\n 'uid' => 6,\n)\n09:28:07[info]: [test222]생성되었습니다.:','default',NULL,'2025-06-20 00:28:07',NULL),(71,1,'Customer/Coupon','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:28:39[debug]: [4/Test444] 변경 전 내용\n09:28:39[debug]: array (\n 'coupon_balance' => 1223,\n)\n09:28:39[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 1222,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:28:07.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:28:39[debug]: [4/Test444] 변경 후 내용\n09:28:39[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 1223,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:28:39.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:28:39[info]: [Test444]수정되였습니다.:\n09:28:39[debug]: [3/test111] 변경 전 내용\n09:28:39[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test111',\n 'amount' => '1',\n)\n09:28:39[debug]: array (\n 'uid' => '3',\n 'clientinfo_uid' => '4',\n 'title' => 'test111',\n 'amount' => '10',\n 'status' => 'default',\n 'updated_at' => NULL,\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 08:57:35.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:28:39[debug]: [3/test111] 변경 후 내용\n09:28:39[debug]: array (\n 'uid' => '3',\n 'clientinfo_uid' => '4',\n 'title' => 'test111',\n 'amount' => '1',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:28:39.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 08:57:35.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:28:39[info]: [test111]수정되였습니다.:','default',NULL,'2025-06-20 00:28:39',NULL),(72,1,'Customer/Coupon','getResultFail','Undefined array key \"clientinfo_uid\"','09:28:54[debug]: Undefined array key "clientinfo_uid"','default',NULL,'2025-06-20 00:28:54',NULL),(73,1,'Customer/Coupon','getResultFail','Undefined array key \"clientinfo_uid\"','09:29:27[debug]: Undefined array key "clientinfo_uid"','default',NULL,'2025-06-20 00:29:27',NULL),(74,1,'Customer/Point','getResultFail','변경할 조건항목을 선택하셔야합니다.','09:36:08[debug]: 변경할 조건항목을 선택하셔야합니다.','default',NULL,'2025-06-20 00:36:08',NULL),(75,1,'Customer/Client','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:41:10[debug]: 입력내용\n09:41:10[debug]: array (\n 'name' => 'Test5555',\n 'email' => 'test555@test.co.kr',\n 'phone' => '234-234',\n 'role' => 'user,vip',\n)\n09:41:10[debug]: [5/Test5555] 입력 후 내용\n09:41:10[debug]: array (\n 'name' => 'Test5555',\n 'email' => 'test555@test.co.kr',\n 'phone' => '234-234',\n 'role' => 'user,vip',\n 'uid' => 5,\n)\n09:41:10[info]: [Test5555]생성되었습니다.:','default',NULL,'2025-06-20 00:41:10',NULL),(76,1,'Customer/Account','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:41:39[debug]: [5/Test5555] 변경 전 내용\n09:41:39[debug]: array (\n 'account_balance' => 10000,\n)\n09:41:39[debug]: array (\n 'uid' => '5',\n 'role' => 'user,vip',\n 'name' => 'Test5555',\n 'phone' => '234-234',\n 'email' => 'test555@test.co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => NULL,\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:41:10.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:41:39[debug]: [5/Test5555] 변경 후 내용\n09:41:39[debug]: array (\n 'uid' => '5',\n 'role' => 'user,vip',\n 'name' => 'Test5555',\n 'phone' => '234-234',\n 'email' => 'test555@test.co.kr',\n 'account_balance' => 10000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:41:39.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:41:10.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:41:39[info]: [Test5555]수정되였습니다.:\n09:41:39[debug]: 입력내용\n09:41:39[debug]: array (\n 'clientinfo_uid' => '5',\n 'status' => 'default',\n 'alias' => 'test555',\n 'title' => 'test1',\n 'amount' => '10000',\n)\n09:41:39[debug]: [4/test1] 입력 후 내용\n09:41:39[debug]: array (\n 'clientinfo_uid' => '5',\n 'status' => 'default',\n 'alias' => 'test555',\n 'title' => 'test1',\n 'amount' => '10000',\n 'uid' => 4,\n)\n09:41:39[info]: [test1]생성되었습니다.:','default',NULL,'2025-06-20 00:41:39',NULL),(77,1,'Customer/Account','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:41:56[debug]: [5/Test5555] 변경 전 내용\n09:41:56[debug]: array (\n 'account_balance' => 40000,\n)\n09:41:56[debug]: array (\n 'uid' => '5',\n 'role' => 'user,vip',\n 'name' => 'Test5555',\n 'phone' => '234-234',\n 'email' => 'test555@test.co.kr',\n 'account_balance' => 10000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:41:39.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:41:10.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:41:56[debug]: [5/Test5555] 변경 후 내용\n09:41:56[debug]: array (\n 'uid' => '5',\n 'role' => 'user,vip',\n 'name' => 'Test5555',\n 'phone' => '234-234',\n 'email' => 'test555@test.co.kr',\n 'account_balance' => 40000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:41:56.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:41:10.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:41:56[info]: [Test5555]수정되였습니다.:\n09:41:56[debug]: 입력내용\n09:41:56[debug]: array (\n 'clientinfo_uid' => '5',\n 'status' => 'default',\n 'alias' => 'test5555',\n 'title' => 'test2',\n 'amount' => '30000',\n)\n09:41:56[debug]: [5/test2] 입력 후 내용\n09:41:56[debug]: array (\n 'clientinfo_uid' => '5',\n 'status' => 'default',\n 'alias' => 'test5555',\n 'title' => 'test2',\n 'amount' => '30000',\n 'uid' => 5,\n)\n09:41:56[info]: [test2]생성되었습니다.:','default',NULL,'2025-06-20 00:41:56',NULL),(78,1,'Customer/Account','getResultFail','예치금[40000]이 출금액:200000보다 부족합니다.','09:42:14[debug]: 예치금[40000]이 출금액:200000보다 부족합니다.','default',NULL,'2025-06-20 00:42:14',NULL),(79,1,'Customer/Account','getResultFail','Undefined array key \"status\"','09:42:14[debug]: Undefined array key "status"','default',NULL,'2025-06-20 00:42:14',NULL),(80,1,'Customer/Account','getResultFail','예치금[40000]이 출금액:54555555보다 부족합니다.','09:43:59[debug]: 예치금[40000]이 출금액:54555555보다 부족합니다.','default',NULL,'2025-06-20 00:43:59',NULL),(81,1,'Customer/Account','getResultFail','Undefined array key \"status\"','09:43:59[debug]: Undefined array key "status"','default',NULL,'2025-06-20 00:43:59',NULL),(82,1,'Customer/Account','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:44:36[debug]: [5/Test5555] 변경 전 내용\n09:44:36[debug]: array (\n 'account_balance' => 484444,\n)\n09:44:36[debug]: array (\n 'uid' => '5',\n 'role' => 'user,vip',\n 'name' => 'Test5555',\n 'phone' => '234-234',\n 'email' => 'test555@test.co.kr',\n 'account_balance' => 40000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:41:56.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:41:10.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:44:36[debug]: [5/Test5555] 변경 후 내용\n09:44:36[debug]: array (\n 'uid' => '5',\n 'role' => 'user,vip',\n 'name' => 'Test5555',\n 'phone' => '234-234',\n 'email' => 'test555@test.co.kr',\n 'account_balance' => 484444,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:44:36.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:41:10.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:44:36[info]: [Test5555]수정되였습니다.:\n09:44:36[debug]: 입력내용\n09:44:36[debug]: array (\n 'clientinfo_uid' => '5',\n 'status' => 'default',\n 'alias' => 'test55555',\n 'title' => 'test3',\n 'amount' => '444444',\n)\n09:44:36[debug]: [6/test3] 입력 후 내용\n09:44:36[debug]: array (\n 'clientinfo_uid' => '5',\n 'status' => 'default',\n 'alias' => 'test55555',\n 'title' => 'test3',\n 'amount' => '444444',\n 'uid' => 6,\n)\n09:44:36[info]: [test3]생성되었습니다.:','default',NULL,'2025-06-20 00:44:36',NULL),(83,1,'Customer/Account','getResultFail','예치금[484444]이 출금액:234234234보다 부족합니다.','09:44:54[debug]: 예치금[484444]이 출금액:234234234보다 부족합니다.','default',NULL,'2025-06-20 00:44:54',NULL),(84,1,'Customer/Account','getResultFail','Undefined array key \"status\"','09:44:54[debug]: Undefined array key "status"','default',NULL,'2025-06-20 00:44:54',NULL),(85,1,'Customer/Account','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:49:23[debug]: [5/Test5555] 변경 전 내용\n09:49:23[debug]: array (\n 'account_balance' => 2334718678,\n)\n09:49:23[debug]: array (\n 'uid' => '5',\n 'role' => 'user,vip',\n 'name' => 'Test5555',\n 'phone' => '234-234',\n 'email' => 'test555@test.co.kr',\n 'account_balance' => 484444,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:44:36.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:41:10.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:49:23[debug]: [5/Test5555] 변경 후 내용\n09:49:23[debug]: array (\n 'uid' => '5',\n 'role' => 'user,vip',\n 'name' => 'Test5555',\n 'phone' => '234-234',\n 'email' => 'test555@test.co.kr',\n 'account_balance' => 2334718678,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:49:23.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:41:10.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:49:23[info]: [Test5555]수정되였습니다.:\n09:49:23[debug]: 입력내용\n09:49:23[debug]: array (\n 'clientinfo_uid' => '5',\n 'status' => 'default',\n 'alias' => 'test5555',\n 'title' => 'test4',\n 'amount' => '2334234234',\n)\n09:49:23[debug]: [7/test4] 입력 후 내용\n09:49:23[debug]: array (\n 'clientinfo_uid' => '5',\n 'status' => 'default',\n 'alias' => 'test5555',\n 'title' => 'test4',\n 'amount' => '2334234234',\n 'uid' => 7,\n)\n09:49:23[info]: [test4]생성되었습니다.:','default',NULL,'2025-06-20 00:49:23',NULL),(86,1,'Customer/Client','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:51:01[debug]: 입력내용\n09:51:01[debug]: array (\n 'name' => 'Test666',\n 'email' => 'test666@test.co.kr',\n 'phone' => '234234',\n 'role' => 'user,reseller',\n)\n09:51:01[debug]: [6/Test666] 입력 후 내용\n09:51:01[debug]: array (\n 'name' => 'Test666',\n 'email' => 'test666@test.co.kr',\n 'phone' => '234234',\n 'role' => 'user,reseller',\n 'uid' => 6,\n)\n09:51:01[info]: [Test666]생성되었습니다.:','default',NULL,'2025-06-20 00:51:01',NULL),(87,1,'Customer/Account','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:51:46[debug]: [6/Test666] 변경 전 내용\n09:51:46[debug]: array (\n 'account_balance' => 10000,\n)\n09:51:46[debug]: array (\n 'uid' => '6',\n 'role' => 'user,reseller',\n 'name' => 'Test666',\n 'phone' => '234234',\n 'email' => 'test666@test.co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => NULL,\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:51:01.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:51:46[debug]: [6/Test666] 변경 후 내용\n09:51:46[debug]: array (\n 'uid' => '6',\n 'role' => 'user,reseller',\n 'name' => 'Test666',\n 'phone' => '234234',\n 'email' => 'test666@test.co.kr',\n 'account_balance' => 10000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:51:46.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:51:01.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:51:46[info]: [Test666]수정되였습니다.:\n09:51:46[debug]: 입력내용\n09:51:46[debug]: array (\n 'clientinfo_uid' => '6',\n 'status' => 'default',\n 'alias' => 'Test666',\n 'title' => 'test1',\n 'amount' => '10000',\n)\n09:51:46[debug]: [8/test1] 입력 후 내용\n09:51:46[debug]: array (\n 'clientinfo_uid' => '6',\n 'status' => 'default',\n 'alias' => 'Test666',\n 'title' => 'test1',\n 'amount' => '10000',\n 'uid' => 8,\n)\n09:51:46[info]: [test1]생성되었습니다.:','default',NULL,'2025-06-20 00:51:46',NULL),(88,1,'Customer/Account','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:51:59[debug]: [6/Test666] 변경 전 내용\n09:51:59[debug]: array (\n 'account_balance' => 30000,\n)\n09:51:59[debug]: array (\n 'uid' => '6',\n 'role' => 'user,reseller',\n 'name' => 'Test666',\n 'phone' => '234234',\n 'email' => 'test666@test.co.kr',\n 'account_balance' => 10000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:51:46.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:51:01.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:51:59[debug]: [6/Test666] 변경 후 내용\n09:51:59[debug]: array (\n 'uid' => '6',\n 'role' => 'user,reseller',\n 'name' => 'Test666',\n 'phone' => '234234',\n 'email' => 'test666@test.co.kr',\n 'account_balance' => 30000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:51:59.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:51:01.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:51:59[info]: [Test666]수정되였습니다.:\n09:51:59[debug]: 입력내용\n09:51:59[debug]: array (\n 'clientinfo_uid' => '6',\n 'status' => 'default',\n 'alias' => 'Test666',\n 'title' => 'test2',\n 'amount' => '20000',\n)\n09:51:59[debug]: [9/test2] 입력 후 내용\n09:51:59[debug]: array (\n 'clientinfo_uid' => '6',\n 'status' => 'default',\n 'alias' => 'Test666',\n 'title' => 'test2',\n 'amount' => '20000',\n 'uid' => 9,\n)\n09:51:59[info]: [test2]생성되었습니다.:','default',NULL,'2025-06-20 00:51:59',NULL),(89,1,'Customer/Account','getResultFail','예치금[30000]이 출금액:60000보다 부족합니다.','09:52:20[debug]: 예치금[30000]이 출금액:60000보다 부족합니다.','default',NULL,'2025-06-20 00:52:20',NULL),(90,1,'Customer/Account','getResultFail','Undefined array key \"status\"','09:52:20[debug]: Undefined array key "status"','default',NULL,'2025-06-20 00:52:20',NULL),(91,1,'Customer/Account','getResultFail','예치금[30000]이 출금액:100000000보다 부족합니다.','09:54:12[debug]: 예치금[30000]이 출금액:100000000보다 부족합니다.','default',NULL,'2025-06-20 00:54:12',NULL),(92,1,'Customer/Account','getResultFail','Undefined array key \"status\"','09:54:12[debug]: Undefined array key "status"','default',NULL,'2025-06-20 00:54:12',NULL),(93,1,'Customer/Account','getResultFail','예치금[30000]이 출금액:1000000보다 부족합니다.','09:55:20[debug]: 예치금[30000]이 출금액:1000000보다 부족합니다.','default',NULL,'2025-06-20 00:55:20',NULL),(94,1,'Customer/Account','getResultFail','Undefined array key \"status\"','09:55:20[debug]: Undefined array key "status"','default',NULL,'2025-06-20 00:55:20',NULL),(95,1,'Customer/Account','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:00:36[debug]: [6/Test666] 변경 전 내용\n10:00:36[debug]: array (\n 'account_balance' => 10030000,\n)\n10:00:36[debug]: array (\n 'uid' => '6',\n 'role' => 'user,reseller',\n 'name' => 'Test666',\n 'phone' => '234234',\n 'email' => 'test666@test.co.kr',\n 'account_balance' => 30000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:51:59.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:51:01.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:00:36[debug]: [6/Test666] 변경 후 내용\n10:00:36[debug]: array (\n 'uid' => '6',\n 'role' => 'user,reseller',\n 'name' => 'Test666',\n 'phone' => '234234',\n 'email' => 'test666@test.co.kr',\n 'account_balance' => 10030000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 10:00:36.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:51:01.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:00:36[info]: [Test666]수정되였습니다.:\n10:00:36[debug]: 입력내용\n10:00:36[debug]: array (\n 'clientinfo_uid' => '6',\n 'status' => 'default',\n 'alias' => 'Test6666',\n 'title' => 'test3',\n 'amount' => '10000000',\n)\n10:00:36[debug]: [10/test3] 입력 후 내용\n10:00:36[debug]: array (\n 'clientinfo_uid' => '6',\n 'status' => 'default',\n 'alias' => 'Test6666',\n 'title' => 'test3',\n 'amount' => '10000000',\n 'uid' => 10,\n)\n10:00:36[info]: [test3]생성되었습니다.:','default',NULL,'2025-06-20 01:00:36',NULL),(96,1,'Customer/Account','getResultFail','예치금[10030000]이 출금액:100000000000000보다 부족합니다.','10:00:59[debug]: 예치금[10030000]이 출금액:100000000000000보다 부족합니다.','default',NULL,'2025-06-20 01:00:59',NULL),(97,1,'Customer/Account','getResultFail','Undefined array key \"status\"','10:00:59[debug]: Undefined array key "status"','default',NULL,'2025-06-20 01:00:59',NULL),(98,1,'Customer/Service','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:03:04[debug]: [JPN150/JPN150] 변경 전 내용\n10:03:04[debug]: array (\n 'status' => 'occupied',\n)\n10:03:04[debug]: array (\n 'code' => 'JPN150',\n 'status' => 'default',\n 'updated_at' => NULL,\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-10 12:53:05.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:03:04[debug]: [JPN150/JPN150] 변경 후 내용\n10:03:04[debug]: array (\n 'code' => 'JPN150',\n 'status' => 'occupied',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 10:03:04.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-10 12:53:05.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:03:04[debug]: 입력내용\n10:03:04[debug]: array (\n 'clientinfo_uid' => '5',\n 'ownerinfo_uid' => '5',\n 'type' => 'alternative',\n 'location' => 'default',\n 'switch' => 'R45P20',\n 'code' => 'JPN150',\n 'raid' => 'RAID1',\n 'billing_at' => '2025-06-21',\n 'start_at' => '2025-06-19',\n 'status' => 'default',\n)\n10:03:04[debug]: [4/S4] 입력 후 내용\n10:03:04[debug]: array (\n 'clientinfo_uid' => '5',\n 'ownerinfo_uid' => '5',\n 'type' => 'alternative',\n 'location' => 'default',\n 'switch' => 'R45P20',\n 'code' => 'JPN150',\n 'raid' => 'RAID1',\n 'billing_at' => '2025-06-21',\n 'start_at' => '2025-06-19',\n 'status' => 'default',\n 'uid' => 4,\n)\n10:03:04[info]: [S4]생성되었습니다.:','default',NULL,'2025-06-20 01:03:04',NULL),(99,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','10:03:42[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-20 01:03:42',NULL),(100,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','10:03:42[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-20 01:03:42',NULL),(101,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:04:21[debug]: 입력내용\n10:04:21[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'IP',\n 'item_uid' => '19',\n 'billing_cycle' => 'month',\n 'price' => '100000',\n 'amount' => '50000',\n 'start_at' => '2025-06-19',\n 'status' => 'default',\n)\n10:04:21[debug]: [69/IP] 입력 후 내용\n10:04:21[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'IP',\n 'item_uid' => 19,\n 'billing_cycle' => 'month',\n 'price' => 100000,\n 'amount' => 50000,\n 'start_at' => '2025-06-19',\n 'status' => 'default',\n 'uid' => 69,\n)\n10:04:21[info]: [IP]생성되었습니다.:\n10:04:21[debug]: 입력내용\n10:04:21[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'IP',\n 'item_uid' => 19,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n)\n10:04:21[debug]: [70/IP] 입력 후 내용\n10:04:21[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'IP',\n 'item_uid' => 19,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n 'uid' => 70,\n)\n10:04:21[info]: [IP]생성되었습니다.:','default',NULL,'2025-06-20 01:04:21',NULL),(102,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:07:25[debug]: 입력내용\n10:07:25[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'IP',\n 'item_uid' => '3',\n 'billing_cycle' => 'onetime',\n 'price' => '100000',\n 'amount' => '50000',\n 'start_at' => '2025-06-20',\n 'status' => 'default',\n)\n10:07:25[debug]: [70/IP] 입력 후 내용\n10:07:25[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'IP',\n 'item_uid' => 3,\n 'billing_cycle' => 'onetime',\n 'price' => 100000,\n 'amount' => 50000,\n 'start_at' => '2025-06-20',\n 'status' => 'default',\n 'uid' => 70,\n)\n10:07:25[info]: [IP]생성되었습니다.:\n10:07:25[debug]: 입력내용\n10:07:25[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'IP',\n 'item_uid' => 3,\n 'billing_cycle' => 'onetime',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n)\n10:07:25[debug]: [71/IP] 입력 후 내용\n10:07:25[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'IP',\n 'item_uid' => 3,\n 'billing_cycle' => 'onetime',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n 'uid' => 71,\n)\n10:07:25[info]: [IP]생성되었습니다.:','default',NULL,'2025-06-20 01:07:25',NULL),(103,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','10:10:03[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-20 01:10:03',NULL),(104,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','10:10:03[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-20 01:10:03',NULL),(105,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','10:10:34[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-20 01:10:34',NULL),(106,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','10:10:34[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-20 01:10:34',NULL),(107,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','10:10:51[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-20 01:10:51',NULL),(108,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','10:10:51[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-20 01:10:51',NULL),(109,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','10:11:10[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-20 01:11:10',NULL),(110,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','10:11:10[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-20 01:11:10',NULL),(111,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','10:11:35[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-20 01:11:35',NULL),(112,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','10:11:35[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-20 01:11:35',NULL),(113,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','10:12:23[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-20 01:12:23',NULL),(114,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','10:12:23[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-20 01:12:23',NULL),(115,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:12:47[debug]: 입력내용\n10:12:47[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'STORAGE',\n 'item_uid' => '1',\n 'billing_cycle' => 'onetime',\n 'price' => '100000',\n 'amount' => '50000',\n 'start_at' => '2025-06-20',\n 'status' => 'default',\n)\n10:12:47[debug]: [71/STORAGE] 입력 후 내용\n10:12:47[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'price' => 100000,\n 'amount' => 50000,\n 'start_at' => '2025-06-20',\n 'status' => 'default',\n 'uid' => 71,\n)\n10:12:47[info]: [STORAGE]생성되었습니다.:\n10:12:47[debug]: 입력내용\n10:12:47[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n)\n10:12:48[debug]: [72/STORAGE] 입력 후 내용\n10:12:48[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n 'uid' => 72,\n)\n10:12:48[info]: [STORAGE]생성되었습니다.:','default',NULL,'2025-06-20 01:12:48',NULL),(116,1,'Customer/Account','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:21:03[debug]: [6/Test666] 변경 전 내용\n10:21:03[debug]: array (\n 'account_balance' => 9930000,\n)\n10:21:03[debug]: array (\n 'uid' => '6',\n 'role' => 'user,reseller',\n 'name' => 'Test666',\n 'phone' => '234234',\n 'email' => 'test666@test.co.kr',\n 'account_balance' => 10030000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 10:01:54.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:51:01.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:21:03[debug]: [6/Test666] 변경 후 내용\n10:21:03[debug]: array (\n 'uid' => '6',\n 'role' => 'user,reseller',\n 'name' => 'Test666',\n 'phone' => '234234',\n 'email' => 'test666@test.co.kr',\n 'account_balance' => 9930000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 10:21:03.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:51:01.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:21:03[info]: [Test666]수정되였습니다.:\n10:21:03[debug]: 입력내용\n10:21:03[debug]: array (\n 'clientinfo_uid' => '6',\n 'status' => 'out',\n 'alias' => 'test6666',\n 'title' => 'test4',\n 'amount' => '100000',\n)\n10:21:03[debug]: [11/test4] 입력 후 내용\n10:21:03[debug]: array (\n 'clientinfo_uid' => '6',\n 'status' => 'out',\n 'alias' => 'test6666',\n 'title' => 'test4',\n 'amount' => '100000',\n 'uid' => 11,\n)\n10:21:03[info]: [test4]생성되었습니다.:','default',NULL,'2025-06-20 01:21:03',NULL),(117,1,'Customer/Account','getResultFail','예치금[9930000]이 출금액:9223372036854775807보다 부족합니다.','10:21:37[debug]: 예치금[9930000]이 출금액:9223372036854775807보다 부족합니다.','default',NULL,'2025-06-20 01:21:37',NULL),(118,1,'Customer/Account','getResultFail','예치금[9930000]이 출금액:1000000000000000000보다 부족합니다.','10:22:31[debug]: 예치금[9930000]이 출금액:1000000000000000000보다 부족합니다.','default',NULL,'2025-06-20 01:22:31',NULL),(119,1,'Customer/Account','getResultFail','Undefined array key \"status\"','10:22:31[debug]: Undefined array key "status"','default',NULL,'2025-06-20 01:22:31',NULL),(120,1,'Customer/Account','getResultFail','예치금[9930000]이 출금액:1000000000000000000보다 부족합니다.','11:02:00[debug]: 예치금[9930000]이 출금액:1000000000000000000보다 부족합니다.','default',NULL,'2025-06-20 02:02:00',NULL),(121,1,'Customer/Account','getResultFail','예치금[9930000]이 출금액:10000000000000보다 부족합니다.','11:02:51[debug]: 예치금[9930000]이 출금액:10000000000000보다 부족합니다.','default',NULL,'2025-06-20 02:02:51',NULL),(122,1,'Customer/Account','getResultFail','예치금[9930000]이 출금액:10000000000000000보다 부족합니다.','11:04:40[debug]: 예치금[9930000]이 출금액:10000000000000000보다 부족합니다.','default',NULL,'2025-06-20 02:04:40',NULL),(123,1,'Customer/Account','getResultFail','예치금[9930000]이 출금액:100000000000보다 부족합니다.','11:05:22[debug]: 예치금[9930000]이 출금액:100000000000보다 부족합니다.','default',NULL,'2025-06-20 02:05:22',NULL),(124,1,'Customer/Account','getResultFail','Undefined array key \"status\"','11:05:22[debug]: Undefined array key "status"','default',NULL,'2025-06-20 02:05:22',NULL),(125,1,'Customer/Account','getResultFail','예치금[9930000]이 출금액:1000000000000000보다 부족합니다.','11:06:38[debug]: 예치금[9930000]이 출금액:1000000000000000보다 부족합니다.','default',NULL,'2025-06-20 02:06:38',NULL),(126,1,'Customer/Account','getResultFail','Undefined array key \"status\"','11:06:38[debug]: Undefined array key "status"','default',NULL,'2025-06-20 02:06:38',NULL),(127,1,'Customer/Client','getResultFail','Customer/Client 작업 데이터 검증 오류발생\nThe role field is required.','11:07:26[debug]: Customer/Client 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-06-20 02:07:26',NULL),(128,1,'Customer/Client','getResultFail','Undefined array key \"name\"','11:07:26[debug]: Undefined array key "name"','default',NULL,'2025-06-20 02:07:26',NULL),(129,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe id field must contain a unique value.','11:12:21[debug]: User 작업 데이터 검증 오류발생\nThe id field must contain a unique value.','default',NULL,'2025-06-20 02:12:21',NULL),(130,1,'User','getResultFail','Undefined array key \"id\"','11:12:21[debug]: Undefined array key "id"','default',NULL,'2025-06-20 02:12:21',NULL),(131,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe id field must contain a unique value.','11:16:43[debug]: User 작업 데이터 검증 오류발생\nThe id field must contain a unique value.','default',NULL,'2025-06-20 02:16:43',NULL),(132,1,'User','getResultFail','Undefined array key \"id\"','11:16:43[debug]: Undefined array key "id"','default',NULL,'2025-06-20 02:16:43',NULL),(133,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe id field must contain a unique value.','11:30:13[debug]: User 작업 데이터 검증 오류발생\nThe id field must contain a unique value.','default',NULL,'2025-06-20 02:30:13',NULL),(134,1,'Customer/Account','getResultFail','예치금[9930000]이 출금액:100000000000000000보다 부족합니다.','11:31:15[debug]: 예치금[9930000]이 출금액:100000000000000000보다 부족합니다.','default',NULL,'2025-06-20 02:31:15',NULL),(135,1,'Customer/ServicePayment','getResultFail','Undefined array key \"STORAGE\"','11:34:54[debug]: Undefined array key "STORAGE"','default',NULL,'2025-06-20 02:34:54',NULL),(136,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:57:01[debug]: 입력내용\n11:57:01[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'STORAGE',\n 'item_uid' => '2',\n 'billing_cycle' => 'onetime',\n 'price' => '100000',\n 'amount' => '50000',\n 'start_at' => '2025-06-20',\n 'status' => 'default',\n)\n11:57:01[debug]: [72/STORAGE] 입력 후 내용\n11:57:01[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'STORAGE',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'price' => 100000,\n 'amount' => 50000,\n 'start_at' => '2025-06-20',\n 'status' => 'default',\n 'uid' => 72,\n)\n11:57:01[info]: [STORAGE]생성되었습니다.:\n11:57:01[debug]: 입력내용\n11:57:01[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'STORAGE',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n)\n11:57:01[debug]: [73/STORAGE] 입력 후 내용\n11:57:01[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'STORAGE',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n 'uid' => 73,\n)\n11:57:01[info]: [STORAGE]생성되었습니다.:','default',NULL,'2025-06-20 02:57:01',NULL),(137,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','12:11:36[debug]: 입력내용\n12:11:36[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'RAM',\n 'item_uid' => '2',\n 'billing_cycle' => 'month',\n 'price' => '10000',\n 'amount' => '5000',\n 'start_at' => '2025-06-19',\n 'status' => 'default',\n)\n12:11:36[debug]: [73/RAM] 입력 후 내용\n12:11:36[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'price' => 10000,\n 'amount' => 5000,\n 'start_at' => '2025-06-19',\n 'status' => 'default',\n 'uid' => 73,\n)\n12:11:36[info]: [RAM]생성되었습니다.:\n12:11:36[debug]: 입력내용\n12:11:36[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 5000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n)\n12:11:36[debug]: [74/RAM] 입력 후 내용\n12:11:36[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 5000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n 'uid' => 74,\n)\n12:11:36[info]: [RAM]생성되었습니다.:','default',NULL,'2025-06-20 03:11:36',NULL),(138,1,'Customer/Service','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:45:04[debug]: [XP250/XP250] 변경 전 내용\n13:45:04[debug]: array (\n 'status' => 'occupied',\n)\n13:45:04[debug]: array (\n 'code' => 'XP250',\n 'status' => 'default',\n 'updated_at' => NULL,\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-10 12:53:40.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n13:45:04[debug]: [XP250/XP250] 변경 후 내용\n13:45:04[debug]: array (\n 'code' => 'XP250',\n 'status' => 'occupied',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 13:45:04.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-10 12:53:40.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n13:45:04[debug]: 입력내용\n13:45:04[debug]: array (\n 'clientinfo_uid' => '6',\n 'ownerinfo_uid' => '6',\n 'type' => 'test',\n 'location' => 'tokyo',\n 'switch' => 'R45P20',\n 'code' => 'XP250',\n 'raid' => 'RAID5',\n 'billing_at' => '2025-06-25',\n 'start_at' => '2025-06-11',\n 'status' => 'default',\n)\n13:45:04[debug]: [5/S5] 입력 후 내용\n13:45:04[debug]: array (\n 'clientinfo_uid' => '6',\n 'ownerinfo_uid' => '6',\n 'type' => 'test',\n 'location' => 'tokyo',\n 'switch' => 'R45P20',\n 'code' => 'XP250',\n 'raid' => 'RAID5',\n 'billing_at' => '2025-06-25',\n 'start_at' => '2025-06-11',\n 'status' => 'default',\n 'uid' => 5,\n)\n13:45:04[info]: [S5]생성되었습니다.:','default',NULL,'2025-06-20 04:45:04',NULL),(139,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:45:38[debug]: 입력내용\n13:45:38[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'IP',\n 'item_uid' => '12',\n 'billing_cycle' => 'month',\n 'price' => '50000',\n 'amount' => '40000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:45:38[debug]: [74/IP] 입력 후 내용\n13:45:38[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'IP',\n 'item_uid' => 12,\n 'billing_cycle' => 'month',\n 'price' => 50000,\n 'amount' => 40000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 74,\n)\n13:45:38[info]: [IP]생성되었습니다.:\n13:45:38[debug]: 입력내용\n13:45:38[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'IP',\n 'item_uid' => 12,\n 'billing_cycle' => 'month',\n 'amount' => 40000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:45:38[debug]: [75/IP] 입력 후 내용\n13:45:38[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'IP',\n 'item_uid' => 12,\n 'billing_cycle' => 'month',\n 'amount' => 40000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 75,\n)\n13:45:38[info]: [IP]생성되었습니다.:','default',NULL,'2025-06-20 04:45:38',NULL),(140,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:46:07[debug]: 입력내용\n13:46:07[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'LINE',\n 'item_uid' => '8',\n 'billing_cycle' => 'month',\n 'price' => '100000',\n 'amount' => '100000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:46:07[debug]: [75/LINE] 입력 후 내용\n13:46:07[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'LINE',\n 'item_uid' => 8,\n 'billing_cycle' => 'month',\n 'price' => 100000,\n 'amount' => 100000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 75,\n)\n13:46:07[info]: [LINE]생성되었습니다.:\n13:46:07[debug]: 입력내용\n13:46:07[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'LINE',\n 'item_uid' => 8,\n 'billing_cycle' => 'month',\n 'amount' => 100000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:46:07[debug]: [76/LINE] 입력 후 내용\n13:46:07[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'LINE',\n 'item_uid' => 8,\n 'billing_cycle' => 'month',\n 'amount' => 100000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 76,\n)\n13:46:07[info]: [LINE]생성되었습니다.:','default',NULL,'2025-06-20 04:46:07',NULL),(141,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:46:35[debug]: 입력내용\n13:46:35[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'SERVER',\n 'item_uid' => '5',\n 'billing_cycle' => 'month',\n 'price' => '200000',\n 'amount' => '150000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:46:35[debug]: [76/SERVER] 입력 후 내용\n13:46:35[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'SERVER',\n 'item_uid' => 5,\n 'billing_cycle' => 'month',\n 'price' => 200000,\n 'amount' => 150000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 76,\n)\n13:46:35[info]: [SERVER]생성되었습니다.:\n13:46:35[debug]: 입력내용\n13:46:35[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'SERVER',\n 'item_uid' => 5,\n 'billing_cycle' => 'month',\n 'amount' => 150000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:46:35[debug]: [77/SERVER] 입력 후 내용\n13:46:35[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'SERVER',\n 'item_uid' => 5,\n 'billing_cycle' => 'month',\n 'amount' => 150000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 77,\n)\n13:46:35[info]: [SERVER]생성되었습니다.:','default',NULL,'2025-06-20 04:46:35',NULL),(142,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:47:01[debug]: 입력내용\n13:47:01[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'CPU',\n 'item_uid' => '2',\n 'billing_cycle' => 'month',\n 'price' => '50000',\n 'amount' => '50000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:47:01[debug]: [77/CPU] 입력 후 내용\n13:47:01[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'CPU',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'price' => 50000,\n 'amount' => 50000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 77,\n)\n13:47:01[info]: [CPU]생성되었습니다.:\n13:47:01[debug]: 입력내용\n13:47:01[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'CPU',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:47:01[debug]: [78/CPU] 입력 후 내용\n13:47:01[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'CPU',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 78,\n)\n13:47:01[info]: [CPU]생성되었습니다.:','default',NULL,'2025-06-20 04:47:01',NULL),(143,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:47:20[debug]: 입력내용\n13:47:20[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'CPU',\n 'item_uid' => '2',\n 'billing_cycle' => 'month',\n 'price' => '50000',\n 'amount' => '50000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:47:20[debug]: [78/CPU] 입력 후 내용\n13:47:20[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'CPU',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'price' => 50000,\n 'amount' => 50000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 78,\n)\n13:47:20[info]: [CPU]생성되었습니다.:\n13:47:20[debug]: 입력내용\n13:47:20[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'CPU',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:47:20[debug]: [79/CPU] 입력 후 내용\n13:47:20[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'CPU',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 79,\n)\n13:47:20[info]: [CPU]생성되었습니다.:','default',NULL,'2025-06-20 04:47:20',NULL),(144,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:47:47[debug]: 입력내용\n13:47:47[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => '2',\n 'billing_cycle' => 'month',\n 'price' => '50000',\n 'amount' => '50000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:47:47[debug]: [79/RAM] 입력 후 내용\n13:47:47[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'price' => 50000,\n 'amount' => 50000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 79,\n)\n13:47:47[info]: [RAM]생성되었습니다.:\n13:47:47[debug]: 입력내용\n13:47:47[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:47:47[debug]: [80/RAM] 입력 후 내용\n13:47:47[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 80,\n)\n13:47:47[info]: [RAM]생성되었습니다.:','default',NULL,'2025-06-20 04:47:47',NULL),(145,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:48:09[debug]: 입력내용\n13:48:09[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => '2',\n 'billing_cycle' => 'month',\n 'price' => '50000',\n 'amount' => '50000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:48:09[debug]: [80/RAM] 입력 후 내용\n13:48:09[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'price' => 50000,\n 'amount' => 50000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 80,\n)\n13:48:09[info]: [RAM]생성되었습니다.:\n13:48:09[debug]: 입력내용\n13:48:09[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:48:09[debug]: [81/RAM] 입력 후 내용\n13:48:09[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 81,\n)\n13:48:09[info]: [RAM]생성되었습니다.:','default',NULL,'2025-06-20 04:48:09',NULL),(146,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:48:37[debug]: 입력내용\n13:48:37[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'STORAGE',\n 'item_uid' => '1',\n 'billing_cycle' => 'month',\n 'price' => '100000',\n 'amount' => '100000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:48:37[debug]: [81/STORAGE] 입력 후 내용\n13:48:37[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'month',\n 'price' => 100000,\n 'amount' => 100000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 81,\n)\n13:48:37[info]: [STORAGE]생성되었습니다.:\n13:48:37[debug]: 입력내용\n13:48:37[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'month',\n 'amount' => 100000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:48:37[debug]: [82/STORAGE] 입력 후 내용\n13:48:37[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'month',\n 'amount' => 100000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 82,\n)\n13:48:37[info]: [STORAGE]생성되었습니다.:','default',NULL,'2025-06-20 04:48:37',NULL),(147,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:49:13[debug]: 입력내용\n13:49:13[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'SOFTWARE',\n 'item_uid' => '3',\n 'billing_cycle' => 'onetime',\n 'price' => '10000',\n 'amount' => '10000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:49:13[debug]: [82/SOFTWARE] 입력 후 내용\n13:49:13[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'SOFTWARE',\n 'item_uid' => 3,\n 'billing_cycle' => 'onetime',\n 'price' => 10000,\n 'amount' => 10000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 82,\n)\n13:49:13[info]: [SOFTWARE]생성되었습니다.:\n13:49:13[debug]: 입력내용\n13:49:13[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'SOFTWARE',\n 'item_uid' => 3,\n 'billing_cycle' => 'onetime',\n 'amount' => 10000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:49:13[debug]: [83/SOFTWARE] 입력 후 내용\n13:49:13[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'SOFTWARE',\n 'item_uid' => 3,\n 'billing_cycle' => 'onetime',\n 'amount' => 10000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 83,\n)\n13:49:13[info]: [SOFTWARE]생성되었습니다.:','default',NULL,'2025-06-20 04:49:13',NULL),(148,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:00:31[debug]: 입력내용\n11:00:31[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'DEFENCE',\n 'item_uid' => '2',\n 'billing_cycle' => 'month',\n 'price' => '200000',\n 'amount' => '200000',\n 'start_at' => '2025-06-20',\n 'status' => 'default',\n)\n11:00:31[debug]: [83/DEFENCE] 입력 후 내용\n11:00:31[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'DEFENCE',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'price' => 200000,\n 'amount' => 200000,\n 'start_at' => '2025-06-20',\n 'status' => 'default',\n 'uid' => 83,\n)\n11:00:31[info]: [DEFENCE]생성되었습니다.:\n11:00:31[debug]: 입력내용\n11:00:31[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'DEFENCE',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 200000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-23',\n)\n11:00:31[debug]: [84/DEFENCE] 입력 후 내용\n11:00:31[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'DEFENCE',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 200000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-23',\n 'uid' => 84,\n)\n11:00:31[info]: [DEFENCE]생성되었습니다.:','default',NULL,'2025-06-23 02:00:31',NULL),(149,1,'Customer/Service','getResultFail','Undefined variable $entity','12:20:13[debug]: Undefined variable $entity','default',NULL,'2025-06-23 03:20:13',NULL),(150,1,'Customer/Service','getResultFail','Undefined variable $cnt','12:40:57[debug]: Undefined variable $cnt','default',NULL,'2025-06-23 03:40:57',NULL),(151,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:28:36[debug]: 입력내용\n13:28:36[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'LINE',\n 'item_uid' => '8',\n 'billing_cycle' => 'month',\n 'price' => '100000',\n 'amount' => '50000',\n 'start_at' => '2025-06-16',\n 'status' => 'default',\n)\n13:28:36[debug]: [84/LINE] 입력 후 내용\n13:28:36[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'LINE',\n 'item_uid' => 8,\n 'billing_cycle' => 'month',\n 'price' => 100000,\n 'amount' => 50000,\n 'start_at' => '2025-06-16',\n 'status' => 'default',\n 'uid' => 84,\n)\n13:28:36[info]: [LINE]생성되었습니다.:\n13:28:36[debug]: 입력내용\n13:28:36[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'LINE',\n 'item_uid' => 8,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-23',\n)\n13:28:36[debug]: [85/LINE] 입력 후 내용\n13:28:36[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'LINE',\n 'item_uid' => 8,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-23',\n 'uid' => 85,\n)\n13:28:36[info]: [LINE]생성되었습니다.:','default',NULL,'2025-06-23 04:28:36',NULL),(152,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:31:18[debug]: 입력내용\n13:31:18[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'STORAGE',\n 'item_uid' => '2',\n 'billing_cycle' => 'onetime',\n 'price' => '100000',\n 'amount' => '100000',\n 'start_at' => '2025-06-17',\n 'status' => 'default',\n)\n13:31:18[debug]: [85/STORAGE] 입력 후 내용\n13:31:18[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'STORAGE',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'price' => 100000,\n 'amount' => 100000,\n 'start_at' => '2025-06-17',\n 'status' => 'default',\n 'uid' => 85,\n)\n13:31:18[info]: [STORAGE]생성되었습니다.:\n13:31:18[debug]: 입력내용\n13:31:18[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'STORAGE',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 100000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-23',\n)\n13:31:18[debug]: [86/STORAGE] 입력 후 내용\n13:31:18[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'STORAGE',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 100000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-23',\n 'uid' => 86,\n)\n13:31:18[info]: [STORAGE]생성되었습니다.:','default',NULL,'2025-06-23 04:31:18',NULL),(153,1,'Customer/Client','getResultSuccess','작업이 성공적으로 완료되었습니다.','16:42:00[debug]: 입력내용\n16:42:00[debug]: array (\n 'name' => 'Test777',\n 'email' => 'test777@test.co.kr',\n 'phone' => '234-234-342',\n 'role' => 'user,vip',\n)\n16:42:00[debug]: [7/Test777] 입력 후 내용\n16:42:00[debug]: array (\n 'name' => 'Test777',\n 'email' => 'test777@test.co.kr',\n 'phone' => '234-234-342',\n 'role' => 'user,vip',\n 'uid' => 7,\n)\n16:42:00[info]: [Test777]생성되었습니다.:','default',NULL,'2025-06-23 07:42:00',NULL),(154,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:09:38[debug]: [6/김은혁] 변경 전 내용\n10:09:38[debug]: array (\n 'id' => 'kim.eh',\n 'name' => '김은혁',\n 'email' => 'kim.eh@prime-idc.jp',\n 'mobile' => '',\n 'role' => 'manager,cloudflare,security',\n)\n10:09:38[debug]: array (\n 'uid' => '6',\n 'id' => 'kim.eh',\n 'passwd' => '$2y$10$YmwicI.Br4XNyGamfRADMOu.qlkwKd2fmnNkL7YIkNHGndvqYPnCq',\n 'name' => '김은혁',\n 'email' => 'kim.eh@prime-idc.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2023-03-24 11:23:52.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2023-03-24 11:23:52.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:09:38[debug]: [6/김은혁] 변경 후 내용\n10:09:38[debug]: array (\n 'uid' => '6',\n 'id' => 'kim.eh',\n 'passwd' => '$2y$10$YmwicI.Br4XNyGamfRADMOu.qlkwKd2fmnNkL7YIkNHGndvqYPnCq',\n 'name' => '김은혁',\n 'email' => 'kim.eh@prime-idc.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare,security',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-24 10:09:38.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2023-03-24 11:23:52.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:09:38[info]: [김은혁]수정되였습니다.:','default',NULL,'2025-06-24 01:09:38',NULL),(155,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:09:47[debug]: [8/김명옥] 변경 전 내용\n10:09:47[debug]: array (\n 'id' => 'jinmingyu',\n 'name' => '김명옥',\n 'email' => 'jinmingyu@idcjp.jp',\n 'mobile' => '',\n 'role' => 'manager,cloudflare,security',\n)\n10:09:47[debug]: array (\n 'uid' => '8',\n 'id' => 'jinmingyu',\n 'passwd' => '$2y$10$PI8WA6d/z4hDE6hxJoUhbuMH3vTTWH0Ry2Z6fTLUUpwQGaE/9bEZa',\n 'name' => '김명옥',\n 'email' => 'jinmingyu@idcjp.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2023-07-21 15:48:39.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2023-03-24 11:25:00.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:09:47[debug]: [8/김명옥] 변경 후 내용\n10:09:47[debug]: array (\n 'uid' => '8',\n 'id' => 'jinmingyu',\n 'passwd' => '$2y$10$PI8WA6d/z4hDE6hxJoUhbuMH3vTTWH0Ry2Z6fTLUUpwQGaE/9bEZa',\n 'name' => '김명옥',\n 'email' => 'jinmingyu@idcjp.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare,security',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-24 10:09:47.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2023-03-24 11:25:00.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:09:47[info]: [김명옥]수정되였습니다.:','default',NULL,'2025-06-24 01:09:47',NULL),(156,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:10:02[debug]: [24/고병남] 변경 전 내용\n10:10:02[debug]: array (\n 'id' => 'kobn',\n 'name' => '고병남',\n 'email' => 'ko@prime-idc.jp',\n 'mobile' => '',\n 'role' => 'manager,cloudflare,security',\n)\n10:10:02[debug]: array (\n 'uid' => '24',\n 'id' => 'kobn',\n 'passwd' => '$2y$10$pWM/XFfSNeSng32sypbDX.WaR4UlM4EDkYKCQfFkYIOC7Ppg0nc5G',\n 'name' => '고병남',\n 'email' => 'ko@prime-idc.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare',\n 'status' => 'default',\n 'updated_at' => NULL,\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2024-10-29 15:30:19.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:10:02[debug]: [24/고병남] 변경 후 내용\n10:10:02[debug]: array (\n 'uid' => '24',\n 'id' => 'kobn',\n 'passwd' => '$2y$10$pWM/XFfSNeSng32sypbDX.WaR4UlM4EDkYKCQfFkYIOC7Ppg0nc5G',\n 'name' => '고병남',\n 'email' => 'ko@prime-idc.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare,security',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-24 10:10:02.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2024-10-29 15:30:19.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:10:02[info]: [고병남]수정되였습니다.:','default',NULL,'2025-06-24 01:10:02',NULL),(157,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:10:17[debug]: [4/김동윤] 변경 전 내용\n10:10:17[debug]: array (\n 'id' => 'kimdy',\n 'name' => '김동윤',\n 'email' => 'kimdy@prime-idc.jp',\n 'mobile' => '',\n 'role' => 'manager,cloudflare,security',\n)\n10:10:17[debug]: array (\n 'uid' => '4',\n 'id' => 'kimdy',\n 'passwd' => '$2y$10$18uyn94xdprzAnt.oYZ5weAvb8rRLhkz/SdQrjEK7yuGhCr9PlUCC',\n 'name' => '김동윤',\n 'email' => 'kimdy@prime-idc.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2023-03-24 11:21:50.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2023-03-24 11:21:50.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:10:17[debug]: [4/김동윤] 변경 후 내용\n10:10:17[debug]: array (\n 'uid' => '4',\n 'id' => 'kimdy',\n 'passwd' => '$2y$10$18uyn94xdprzAnt.oYZ5weAvb8rRLhkz/SdQrjEK7yuGhCr9PlUCC',\n 'name' => '김동윤',\n 'email' => 'kimdy@prime-idc.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare,security',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-24 10:10:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2023-03-24 11:21:50.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:10:17[info]: [김동윤]수정되였습니다.:','default',NULL,'2025-06-24 01:10:17',NULL),(158,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:11:41[debug]: [5/김효영] 변경 전 내용\n10:11:41[debug]: array (\n 'id' => 'kimhy',\n 'name' => '김효영',\n 'email' => 'khy@prime-idc.jp',\n 'mobile' => '',\n 'role' => 'manager,security,director',\n)\n10:11:41[debug]: array (\n 'uid' => '5',\n 'id' => 'kimhy',\n 'passwd' => '$2y$10$.yEKVqY.F7HoSOZijl4uyeulUtfAQ4EDRiyR2JpgFYBuKw.mZoZvG',\n 'name' => '김효영',\n 'email' => 'khy@prime-idc.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare,director',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2023-03-24 11:23:18.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2023-03-24 11:23:18.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:11:41[debug]: [5/김효영] 변경 후 내용\n10:11:41[debug]: array (\n 'uid' => '5',\n 'id' => 'kimhy',\n 'passwd' => '$2y$10$.yEKVqY.F7HoSOZijl4uyeulUtfAQ4EDRiyR2JpgFYBuKw.mZoZvG',\n 'name' => '김효영',\n 'email' => 'khy@prime-idc.jp',\n 'mobile' => NULL,\n 'role' => 'manager,security,director',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-24 10:11:41.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2023-03-24 11:23:18.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:11:41[info]: [김효영]수정되였습니다.:','default',NULL,'2025-06-24 01:11:41',NULL),(159,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:20:09[debug]: 입력내용\n13:20:09[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => '2',\n 'billing_cycle' => 'onetime',\n 'price' => '0',\n 'amount' => '10000',\n 'start_at' => '2025-06-24',\n 'status' => 'default',\n)\n13:20:09[debug]: [86/RAM] 입력 후 내용\n13:20:09[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'price' => 0,\n 'amount' => 10000,\n 'start_at' => '2025-06-24',\n 'status' => 'default',\n 'uid' => 86,\n)\n13:20:09[info]: [RAM]생성되었습니다.:\n13:20:09[debug]: 입력내용\n13:20:09[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 10000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-25',\n 'status' => 'default',\n)\n13:20:09[debug]: [87/RAM] 입력 후 내용\n13:20:09[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 10000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-25',\n 'status' => 'default',\n 'uid' => 87,\n)\n13:20:09[info]: [RAM]생성되었습니다.:','default',NULL,'2025-06-25 04:20:09',NULL),(160,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:22:33[debug]: 입력내용\n13:22:33[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => '2',\n 'billing_cycle' => 'onetime',\n 'price' => '10000',\n 'amount' => '0',\n 'start_at' => '2025-06-24',\n 'status' => 'default',\n)\n13:22:33[debug]: [87/RAM] 입력 후 내용\n13:22:33[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'price' => 10000,\n 'amount' => 0,\n 'start_at' => '2025-06-24',\n 'status' => 'default',\n 'uid' => 87,\n)\n13:22:33[info]: [RAM]생성되었습니다.:\n13:22:33[debug]: 입력내용\n13:22:33[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 0,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-25',\n 'status' => 'paid',\n)\n13:22:33[debug]: [88/RAM] 입력 후 내용\n13:22:33[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 0,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-25',\n 'status' => 'paid',\n 'uid' => 88,\n)\n13:22:33[info]: [RAM]생성되었습니다.:','default',NULL,'2025-06-25 04:22:33',NULL),(161,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:30:04[debug]: 입력내용\n13:30:04[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => '2',\n 'billing_cycle' => 'onetime',\n 'price' => '10000',\n 'amount' => '0',\n 'start_at' => '2025-06-24',\n 'status' => 'default',\n)\n13:30:04[debug]: [88/RAM] 입력 후 내용\n13:30:04[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'price' => 10000,\n 'amount' => 0,\n 'start_at' => '2025-06-24',\n 'status' => 'default',\n 'uid' => 88,\n)\n13:30:04[info]: [RAM]생성되었습니다.:\n13:30:04[debug]: 입력내용\n13:30:04[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 0,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-25',\n 'user_uid' => '1',\n 'status' => 'paid',\n)\n13:30:04[debug]: [89/RAM] 입력 후 내용\n13:30:04[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 0,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-25',\n 'user_uid' => 1,\n 'status' => 'paid',\n 'uid' => 89,\n)\n13:30:04[info]: [RAM]생성되었습니다.:','default',NULL,'2025-06-25 04:30:04',NULL),(162,1,'Customer/Client','getResultSuccess','작업이 성공적으로 완료되었습니다.','18:40:18[debug]: 입력내용\n18:40:18[debug]: array (\n 'name' => 'Test8888',\n 'email' => 'test8888@co.kr',\n 'phone' => '00000-23423-3434',\n 'role' => 'user,vip,reseller',\n)\n18:40:18[debug]: [8/Test8888] 입력 후 내용\n18:40:18[debug]: array (\n 'name' => 'Test8888',\n 'email' => 'test8888@co.kr',\n 'phone' => '00000-23423-3434',\n 'role' => 'user,vip,reseller',\n 'uid' => 8,\n)\n18:40:18[info]: [Test8888]생성되었습니다.:','default',NULL,'2025-06-25 09:40:18',NULL),(163,1,'Customer/Service','getResultFail','\n------App\\Models\\CommonModel::save_process 오류-----\narray (\n \'user_uid\' => \'The user_uid field is required.\',\n)\n------------------------------\n','18:41:32[debug]: [MP350/MP350] 변경 전 내용\n18:41:32[debug]: array (\n 'status' => 'occupied',\n)\n18:41:32[debug]: array (\n 'code' => 'MP350',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-10 19:11:53.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-10 12:53:54.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n18:41:32[debug]: [MP350/MP350] 변경 후 내용\n18:41:32[debug]: array (\n 'code' => 'MP350',\n 'status' => 'occupied',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-25 18:41:32.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-10 12:53:54.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n18:41:32[debug]: 입력내용\n18:41:32[debug]: array (\n 'clientinfo_uid' => '8',\n 'ownerinfo_uid' => '8',\n 'type' => 'test',\n 'location' => 'default',\n 'switch' => 'R45P20',\n 'code' => 'MP350',\n 'raid' => 'RAID5',\n 'billing_at' => '2025-06-26',\n 'start_at' => '2025-06-25',\n 'status' => 'default',\n)\n18:41:32[error]: \n------App\\Models\\CommonModel::save_process 오류-----\narray (\n 'user_uid' => 'The user_uid field is required.',\n)\n------------------------------\n\n18:41:32[debug]: \n------App\\Models\\CommonModel::save_process 오류-----\narray (\n 'user_uid' => 'The user_uid field is required.',\n)\n------------------------------\n','default',NULL,'2025-06-25 09:41:32',NULL),(164,1,'Customer/Service','getResultSuccess','작업이 성공적으로 완료되었습니다.','18:46:24[debug]: [JPN140/JPN140] 변경 전 내용\n18:46:24[debug]: array (\n 'status' => 'occupied',\n)\n18:46:24[debug]: array (\n 'code' => 'JPN140',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-10 17:11:11.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-10 12:52:49.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n18:46:24[debug]: [JPN140/JPN140] 변경 후 내용\n18:46:24[debug]: array (\n 'code' => 'JPN140',\n 'status' => 'occupied',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-25 18:46:24.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-10 12:52:49.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n18:46:24[debug]: 입력내용\n18:46:24[debug]: array (\n 'clientinfo_uid' => '8',\n 'ownerinfo_uid' => '8',\n 'type' => 'test',\n 'location' => 'default',\n 'switch' => 'R45P20',\n 'code' => 'JPN140',\n 'raid' => 'RAID1',\n 'billing_at' => '2025-06-26',\n 'start_at' => '2025-06-25',\n 'status' => 'default',\n 'user_uid' => '1',\n)\n18:46:24[debug]: [6/S6] 입력 후 내용\n18:46:24[debug]: array (\n 'clientinfo_uid' => '8',\n 'ownerinfo_uid' => '8',\n 'type' => 'test',\n 'location' => 'default',\n 'switch' => 'R45P20',\n 'code' => 'JPN140',\n 'raid' => 'RAID1',\n 'billing_at' => '2025-06-26',\n 'start_at' => '2025-06-25',\n 'status' => 'default',\n 'user_uid' => 1,\n 'uid' => 6,\n)\n18:46:24[info]: [S6]생성되었습니다.:','default',NULL,'2025-06-25 09:46:24',NULL),(165,1,'Customer/Service','getResultFail','Undefined array key \"unPaids\"','18:46:24[debug]: 입력내용\n18:46:24[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Customer/Service',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '18:46:24[debug]: [JPN140/JPN140] 변경 전 내용\n18:46:24[debug]: array (\n \\'status\\' => \\'occupied\\',\n)\n18:46:24[debug]: array (\n \\'code\\' => \\'JPN140\\',\n \\'status\\' => \\'default\\',\n \\'updated_at\\' => \n \\\\CodeIgniter\\\\I18n\\\\Time::__set_state(array(\n \\'timezone\\' => \n \\\\DateTimeZone::__set_state(array(\n \\'timezone_type\\' => 3,\n \\'timezone\\' => \\'Asia/Seoul\\',\n )),\n \\'locale\\' => \\'en\\',\n \\'toStringFormat\\' => \\'yyyy-MM-dd HH:mm:ss\\',\n \\'date\\' => \\'2025-06-10 17:11:11.000000\\',\n \\'timezone_type\\' => 3,\n \\'timezone\\' => \\'Asia/Seoul\\',\n )),\n \\'created_at\\' => \n \\\\CodeIgniter\\\\I18n\\\\Time::__set_state(array(\n \\'timezone\\' => \n \\\\DateTimeZone::__set_state(array(\n \\'timezone_type\\' => 3,\n \\'timezone\\' => \\'Asia/Seoul\\',\n )),\n \\'locale\\' => \\'en\\',\n \\'toStringFormat\\' => \\'yyyy-MM-dd HH:mm:ss\\',\n \\'date\\' => \\'2025-06-10 12:52:49.000000\\',\n \\'timezone_type\\' => 3,\n \\'timezone\\' => \\'Asia/Seoul\\',\n )),\n \\'deleted_at\\' => NULL,\n)\n18:46:24[debug]: [JPN140/JPN140] 변경 후 내용\n18:46:24[debug]: array (\n \\'code\\' => \\'JPN140\\',\n \\'status\\' => \\'occupied\\',\n \\'updated_at\\' => \n \\\\CodeIgniter\\\\I18n\\\\Time::__set_state(array(\n \\'timezone\\' => \n \\\\DateTimeZone::__set_state(array(\n \\'timezone_type\\' => 3,\n \\'timezone\\' => \\'Asia/Seoul\\',\n )),\n \\'locale\\' => \\'en\\',\n \\'toStringFormat\\' => \\'yyyy-MM-dd HH:mm:ss\\',\n \\'date\\' => \\'2025-06-25 18:46:24.000000\\',\n \\'timezone_type\\' => 3,\n \\'timezone\\' => \\'Asia/Seoul\\',\n )),\n \\'created_at\\' => \n \\\\CodeIgniter\\\\I18n\\\\Time::__set_state(array(\n \\'timezone\\' => \n \\\\DateTimeZone::__set_state(array(\n \\'timezone_type\\' => 3,\n \\'timezone\\' => \\'Asia/Seoul\\',\n )),\n \\'locale\\' => \\'en\\',\n \\'toStringFormat\\' => \\'yyyy-MM-dd HH:mm:ss\\',\n \\'date\\' => \\'2025-06-10 12:52:49.000000\\',\n \\'timezone_type\\' => 3,\n \\'timezone\\' => \\'Asia/Seoul\\',\n )),\n \\'deleted_at\\' => NULL,\n)\n18:46:24[debug]: 입력내용\n18:46:24[debug]: array (\n \\'clientinfo_uid\\' => \\'8\\',\n \\'ownerinfo_uid\\' => \\'8\\',\n \\'type\\' => \\'test\\',\n \\'location\\' => \\'default\\',\n \\'switch\\' => \\'R45P20\\',\n \\'code\\' => \\'JPN140\\',\n \\'raid\\' => \\'RAID1\\',\n \\'billing_at\\' => \\'2025-06-26\\',\n \\'start_at\\' => \\'2025-06-25\\',\n \\'status\\' => \\'default\\',\n \\'user_uid\\' => \\'1\\',\n)\n18:46:24[debug]: [6/S6] 입력 후 내용\n18:46:24[debug]: array (\n \\'clientinfo_uid\\' => \\'8\\',\n \\'ownerinfo_uid\\' => \\'8\\',\n \\'type\\' => \\'test\\',\n \\'location\\' => \\'default\\',\n \\'switch\\' => \\'R45P20\\',\n \\'code\\' => \\'JPN140\\',\n \\'raid\\' => \\'RAID1\\',\n \\'billing_at\\' => \\'2025-06-26\\',\n \\'start_at\\' => \\'2025-06-25\\',\n \\'status\\' => \\'default\\',\n \\'user_uid\\' => 1,\n \\'uid\\' => 6,\n)\n18:46:24[info]: [S6]생성되었습니다.:',\n)\n18:46:24[debug]: [164/작업이 성공적으로 완료되었습니다.] 입력 후 내용\n18:46:24[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Customer/Service',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '18:46:24[debug]: [JPN140/JPN140] 변경 전 내용\n18:46:24[debug]: array (\n &#039;status&#039; =&gt; &#039;occupied&#039;,\n)\n18:46:24[debug]: array (\n &#039;code&#039; =&gt; &#039;JPN140&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n &#039;updated_at&#039; =&gt; \n \\\\CodeIgniter\\\\I18n\\\\Time::__set_state(array(\n &#039;timezone&#039; =&gt; \n \\\\DateTimeZone::__set_state(array(\n &#039;timezone_type&#039; =&gt; 3,\n &#039;timezone&#039; =&gt; &#039;Asia/Seoul&#039;,\n )),\n &#039;locale&#039; =&gt; &#039;en&#039;,\n &#039;toStringFormat&#039; =&gt; &#039;yyyy-MM-dd HH:mm:ss&#039;,\n &#039;date&#039; =&gt; &#039;2025-06-10 17:11:11.000000&#039;,\n &#039;timezone_type&#039; =&gt; 3,\n &#039;timezone&#039; =&gt; &#039;Asia/Seoul&#039;,\n )),\n &#039;created_at&#039; =&gt; \n \\\\CodeIgniter\\\\I18n\\\\Time::__set_state(array(\n &#039;timezone&#039; =&gt; \n \\\\DateTimeZone::__set_state(array(\n &#039;timezone_type&#039; =&gt; 3,\n &#039;timezone&#039; =&gt; &#039;Asia/Seoul&#039;,\n )),\n &#039;locale&#039; =&gt; &#039;en&#039;,\n &#039;toStringFormat&#039; =&gt; &#039;yyyy-MM-dd HH:mm:ss&#039;,\n &#039;date&#039; =&gt; &#039;2025-06-10 12:52:49.000000&#039;,\n &#039;timezone_type&#039; =&gt; 3,\n &#039;timezone&#039; =&gt; &#039;Asia/Seoul&#039;,\n )),\n &#039;deleted_at&#039; =&gt; NULL,\n)\n18:46:24[debug]: [JPN140/JPN140] 변경 후 내용\n18:46:24[debug]: array (\n &#039;code&#039; =&gt; &#039;JPN140&#039;,\n &#039;status&#039; =&gt; &#039;occupied&#039;,\n &#039;updated_at&#039; =&gt; \n \\\\CodeIgniter\\\\I18n\\\\Time::__set_state(array(\n &#039;timezone&#039; =&gt; \n \\\\DateTimeZone::__set_state(array(\n &#039;timezone_type&#039; =&gt; 3,\n &#039;timezone&#039; =&gt; &#039;Asia/Seoul&#039;,\n )),\n &#039;locale&#039; =&gt; &#039;en&#039;,\n &#039;toStringFormat&#039; =&gt; &#039;yyyy-MM-dd HH:mm:ss&#039;,\n &#039;date&#039; =&gt; &#039;2025-06-25 18:46:24.000000&#039;,\n &#039;timezone_type&#039; =&gt; 3,\n &#039;timezone&#039; =&gt; &#039;Asia/Seoul&#039;,\n )),\n &#039;created_at&#039; =&gt; \n \\\\CodeIgniter\\\\I18n\\\\Time::__set_state(array(\n &#039;timezone&#039; =&gt; \n \\\\DateTimeZone::__set_state(array(\n &#039;timezone_type&#039; =&gt; 3,\n &#039;timezone&#039; =&gt; &#039;Asia/Seoul&#039;,\n )),\n &#039;locale&#039; =&gt; &#039;en&#039;,\n &#039;toStringFormat&#039; =&gt; &#039;yyyy-MM-dd HH:mm:ss&#039;,\n &#039;date&#039; =&gt; &#039;2025-06-10 12:52:49.000000&#039;,\n &#039;timezone_type&#039; =&gt; 3,\n &#039;timezone&#039; =&gt; &#039;Asia/Seoul&#039;,\n )),\n &#039;deleted_at&#039; =&gt; NULL,\n)\n18:46:24[debug]: 입력내용\n18:46:24[debug]: array (\n &#039;clientinfo_uid&#039; =&gt; &#039;8&#039;,\n &#039;ownerinfo_uid&#039; =&gt; &#039;8&#039;,\n &#039;type&#039; =&gt; &#039;test&#039;,\n &#039;location&#039; =&gt; &#039;default&#039;,\n &#039;switch&#039; =&gt; &#039;R45P20&#039;,\n &#039;code&#039; =&gt; &#039;JPN140&#039;,\n &#039;raid&#039; =&gt; &#039;RAID1&#039;,\n &#039;billing_at&#039; =&gt; &#039;2025-06-26&#039;,\n &#039;start_at&#039; =&gt; &#039;2025-06-25&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n &#039;user_uid&#039; =&gt; &#039;1&#039;,\n)\n18:46:24[debug]: [6/S6] 입력 후 내용\n18:46:24[debug]: array (\n &#039;clientinfo_uid&#039; =&gt; &#039;8&#039;,\n &#039;ownerinfo_uid&#039; =&gt; &#039;8&#039;,\n &#039;type&#039; =&gt; &#039;test&#039;,\n &#039;location&#039; =&gt; &#039;default&#039;,\n &#039;switch&#039; =&gt; &#039;R45P20&#039;,\n &#039;code&#039; =&gt; &#039;JPN140&#039;,\n &#039;raid&#039; =&gt; &#039;RAID1&#039;,\n &#039;billing_at&#039; =&gt; &#039;2025-06-26&#039;,\n &#039;start_at&#039; =&gt; &#039;2025-06-25&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n &#039;user_uid&#039; =&gt; 1,\n &#039;uid&#039; =&gt; 6,\n)\n18:46:24[info]: [S6]생성되었습니다.:',\n 'uid' => 164,\n)\n18:46:24[info]: [작업이 성공적으로 완료되었습니다.]생성되었습니다.:\n18:46:24[debug]: Undefined array key "unPaids"','default',NULL,'2025-06-25 09:46:24',NULL),(166,1,'Customer/Service','getResultFail','Customer/Service 작업 데이터 검증 오류발생\nThe code field is required.','18:47:21[debug]: Customer/Service 작업 데이터 검증 오류발생\nThe code field is required.','default',NULL,'2025-06-25 09:47:21',NULL),(167,1,'Customer/Service','getResultFail','Undefined array key \"unPaids\"','18:47:53[debug]: Undefined array key "unPaids"','default',NULL,'2025-06-25 09:47:53',NULL),(168,1,'Auth/Local','getResultSuccess','작업이 성공적으로 완료되었습니다.','','default',NULL,'2025-06-26 00:31:48',NULL),(169,1,'Auth/Local','getResultSuccess','작업이 성공적으로 완료되었습니다.','','default',NULL,'2025-06-26 00:32:45',NULL),(170,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:03:04[debug]: 입력내용\n10:03:04[debug]: array (\n 'code' => 'R35P10',\n 'status' => 'default',\n)\n10:03:04[debug]: [65a01dea-f50d-44c3-a516-a65b30e853f3/65a01dea-f50d-44c3-a516-a65b30e853f3] 입력 후 내용\n10:03:04[debug]: array (\n 'code' => '65a01dea-f50d-44c3-a516-a65b30e853f3',\n 'status' => 'default',\n)\n10:03:04[info]: [65a01dea-f50d-44c3-a516-a65b30e853f3]생성되었습니다.:','default',NULL,'2025-06-26 01:03:04',NULL),(171,1,'Equipment/Switch','getResultFail','App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','10:03:04[debug]: 입력내용\n10:03:04[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Switch',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:03:04[debug]: 입력내용\n10:03:04[debug]: array (\n \\'code\\' => \\'R35P10\\',\n \\'status\\' => \\'default\\',\n)\n10:03:04[debug]: [65a01dea-f50d-44c3-a516-a65b30e853f3/65a01dea-f50d-44c3-a516-a65b30e853f3] 입력 후 내용\n10:03:04[debug]: array (\n \\'code\\' => \\'65a01dea-f50d-44c3-a516-a65b30e853f3\\',\n \\'status\\' => \\'default\\',\n)\n10:03:04[info]: [65a01dea-f50d-44c3-a516-a65b30e853f3]생성되었습니다.:',\n)\n10:03:04[debug]: [170/작업이 성공적으로 완료되었습니다.] 입력 후 내용\n10:03:04[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Switch',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:03:04[debug]: 입력내용\n10:03:04[debug]: array (\n &#039;code&#039; =&gt; &#039;R35P10&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:03:04[debug]: [65a01dea-f50d-44c3-a516-a65b30e853f3/65a01dea-f50d-44c3-a516-a65b30e853f3] 입력 후 내용\n10:03:04[debug]: array (\n &#039;code&#039; =&gt; &#039;65a01dea-f50d-44c3-a516-a65b30e853f3&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:03:04[info]: [65a01dea-f50d-44c3-a516-a65b30e853f3]생성되었습니다.:',\n 'uid' => 170,\n)\n10:03:04[info]: [작업이 성공적으로 완료되었습니다.]생성되었습니다.:\n10:03:04[debug]: App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','default',NULL,'2025-06-26 01:03:04',NULL),(172,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:03:06[debug]: 입력내용\n10:03:06[debug]: array (\n 'code' => 'R35P10',\n 'status' => 'default',\n)\n10:03:06[debug]: [a795d951-6cd5-4fa7-9704-1c7acf51e010/a795d951-6cd5-4fa7-9704-1c7acf51e010] 입력 후 내용\n10:03:06[debug]: array (\n 'code' => 'a795d951-6cd5-4fa7-9704-1c7acf51e010',\n 'status' => 'default',\n)\n10:03:06[info]: [a795d951-6cd5-4fa7-9704-1c7acf51e010]생성되었습니다.:','default',NULL,'2025-06-26 01:03:06',NULL),(173,1,'Equipment/Switch','getResultFail','App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','10:03:06[debug]: 입력내용\n10:03:06[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Switch',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:03:06[debug]: 입력내용\n10:03:06[debug]: array (\n \\'code\\' => \\'R35P10\\',\n \\'status\\' => \\'default\\',\n)\n10:03:06[debug]: [a795d951-6cd5-4fa7-9704-1c7acf51e010/a795d951-6cd5-4fa7-9704-1c7acf51e010] 입력 후 내용\n10:03:06[debug]: array (\n \\'code\\' => \\'a795d951-6cd5-4fa7-9704-1c7acf51e010\\',\n \\'status\\' => \\'default\\',\n)\n10:03:06[info]: [a795d951-6cd5-4fa7-9704-1c7acf51e010]생성되었습니다.:',\n)\n10:03:06[debug]: [172/작업이 성공적으로 완료되었습니다.] 입력 후 내용\n10:03:06[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Switch',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:03:06[debug]: 입력내용\n10:03:06[debug]: array (\n &#039;code&#039; =&gt; &#039;R35P10&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:03:06[debug]: [a795d951-6cd5-4fa7-9704-1c7acf51e010/a795d951-6cd5-4fa7-9704-1c7acf51e010] 입력 후 내용\n10:03:06[debug]: array (\n &#039;code&#039; =&gt; &#039;a795d951-6cd5-4fa7-9704-1c7acf51e010&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:03:06[info]: [a795d951-6cd5-4fa7-9704-1c7acf51e010]생성되었습니다.:',\n 'uid' => 172,\n)\n10:03:06[info]: [작업이 성공적으로 완료되었습니다.]생성되었습니다.:\n10:03:06[debug]: App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','default',NULL,'2025-06-26 01:03:06',NULL),(174,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:03:17[debug]: 입력내용\n10:03:17[debug]: array (\n 'code' => 'R35P10',\n 'status' => 'default',\n)\n10:03:17[debug]: [5311a375-0ad9-4807-89f7-ab69f0b2ac81/5311a375-0ad9-4807-89f7-ab69f0b2ac81] 입력 후 내용\n10:03:17[debug]: array (\n 'code' => '5311a375-0ad9-4807-89f7-ab69f0b2ac81',\n 'status' => 'default',\n)\n10:03:17[info]: [5311a375-0ad9-4807-89f7-ab69f0b2ac81]생성되었습니다.:','default',NULL,'2025-06-26 01:03:17',NULL),(175,1,'Equipment/Switch','getResultFail','App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','10:03:17[debug]: 입력내용\n10:03:17[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Switch',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:03:17[debug]: 입력내용\n10:03:17[debug]: array (\n \\'code\\' => \\'R35P10\\',\n \\'status\\' => \\'default\\',\n)\n10:03:17[debug]: [5311a375-0ad9-4807-89f7-ab69f0b2ac81/5311a375-0ad9-4807-89f7-ab69f0b2ac81] 입력 후 내용\n10:03:17[debug]: array (\n \\'code\\' => \\'5311a375-0ad9-4807-89f7-ab69f0b2ac81\\',\n \\'status\\' => \\'default\\',\n)\n10:03:17[info]: [5311a375-0ad9-4807-89f7-ab69f0b2ac81]생성되었습니다.:',\n)\n10:03:17[debug]: [174/작업이 성공적으로 완료되었습니다.] 입력 후 내용\n10:03:17[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Switch',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:03:17[debug]: 입력내용\n10:03:17[debug]: array (\n &#039;code&#039; =&gt; &#039;R35P10&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:03:17[debug]: [5311a375-0ad9-4807-89f7-ab69f0b2ac81/5311a375-0ad9-4807-89f7-ab69f0b2ac81] 입력 후 내용\n10:03:17[debug]: array (\n &#039;code&#039; =&gt; &#039;5311a375-0ad9-4807-89f7-ab69f0b2ac81&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:03:17[info]: [5311a375-0ad9-4807-89f7-ab69f0b2ac81]생성되었습니다.:',\n 'uid' => 174,\n)\n10:03:17[info]: [작업이 성공적으로 완료되었습니다.]생성되었습니다.:\n10:03:17[debug]: App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','default',NULL,'2025-06-26 01:03:17',NULL),(176,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:04:18[debug]: 입력내용\n10:04:18[debug]: array (\n 'code' => 'R35P10',\n 'status' => 'default',\n)\n10:04:18[debug]: [78425a9f-7744-4f6e-8ba5-4673ccbe8e4f/78425a9f-7744-4f6e-8ba5-4673ccbe8e4f] 입력 후 내용\n10:04:18[debug]: array (\n 'code' => '78425a9f-7744-4f6e-8ba5-4673ccbe8e4f',\n 'status' => 'default',\n)\n10:04:18[info]: [78425a9f-7744-4f6e-8ba5-4673ccbe8e4f]생성되었습니다.:','default',NULL,'2025-06-26 01:04:18',NULL),(177,1,'Equipment/Switch','getResultFail','App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','10:04:18[debug]: 입력내용\n10:04:18[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Switch',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:04:18[debug]: 입력내용\n10:04:18[debug]: array (\n \\'code\\' => \\'R35P10\\',\n \\'status\\' => \\'default\\',\n)\n10:04:18[debug]: [78425a9f-7744-4f6e-8ba5-4673ccbe8e4f/78425a9f-7744-4f6e-8ba5-4673ccbe8e4f] 입력 후 내용\n10:04:18[debug]: array (\n \\'code\\' => \\'78425a9f-7744-4f6e-8ba5-4673ccbe8e4f\\',\n \\'status\\' => \\'default\\',\n)\n10:04:18[info]: [78425a9f-7744-4f6e-8ba5-4673ccbe8e4f]생성되었습니다.:',\n)\n10:04:18[debug]: [176/작업이 성공적으로 완료되었습니다.] 입력 후 내용\n10:04:18[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Switch',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:04:18[debug]: 입력내용\n10:04:18[debug]: array (\n &#039;code&#039; =&gt; &#039;R35P10&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:04:18[debug]: [78425a9f-7744-4f6e-8ba5-4673ccbe8e4f/78425a9f-7744-4f6e-8ba5-4673ccbe8e4f] 입력 후 내용\n10:04:18[debug]: array (\n &#039;code&#039; =&gt; &#039;78425a9f-7744-4f6e-8ba5-4673ccbe8e4f&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:04:18[info]: [78425a9f-7744-4f6e-8ba5-4673ccbe8e4f]생성되었습니다.:',\n 'uid' => 176,\n)\n10:04:18[info]: [작업이 성공적으로 완료되었습니다.]생성되었습니다.:\n10:04:18[debug]: App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','default',NULL,'2025-06-26 01:04:18',NULL),(178,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:05:43[debug]: 입력내용\n10:05:43[debug]: array (\n 'code' => 'ZEN100',\n 'status' => 'default',\n)\n10:05:43[debug]: [b46f1bad-9c39-4c16-8344-ce3afe67fc80/b46f1bad-9c39-4c16-8344-ce3afe67fc80] 입력 후 내용\n10:05:43[debug]: array (\n 'code' => 'b46f1bad-9c39-4c16-8344-ce3afe67fc80',\n 'status' => 'default',\n)\n10:05:43[info]: [b46f1bad-9c39-4c16-8344-ce3afe67fc80]생성되었습니다.:','default',NULL,'2025-06-26 01:05:43',NULL),(179,1,'Equipment/Code','getResultFail','App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','10:05:43[debug]: 입력내용\n10:05:43[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Code',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:05:43[debug]: 입력내용\n10:05:43[debug]: array (\n \\'code\\' => \\'ZEN100\\',\n \\'status\\' => \\'default\\',\n)\n10:05:43[debug]: [b46f1bad-9c39-4c16-8344-ce3afe67fc80/b46f1bad-9c39-4c16-8344-ce3afe67fc80] 입력 후 내용\n10:05:43[debug]: array (\n \\'code\\' => \\'b46f1bad-9c39-4c16-8344-ce3afe67fc80\\',\n \\'status\\' => \\'default\\',\n)\n10:05:43[info]: [b46f1bad-9c39-4c16-8344-ce3afe67fc80]생성되었습니다.:',\n)\n10:05:43[debug]: [178/작업이 성공적으로 완료되었습니다.] 입력 후 내용\n10:05:43[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Code',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:05:43[debug]: 입력내용\n10:05:43[debug]: array (\n &#039;code&#039; =&gt; &#039;ZEN100&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:05:43[debug]: [b46f1bad-9c39-4c16-8344-ce3afe67fc80/b46f1bad-9c39-4c16-8344-ce3afe67fc80] 입력 후 내용\n10:05:43[debug]: array (\n &#039;code&#039; =&gt; &#039;b46f1bad-9c39-4c16-8344-ce3afe67fc80&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:05:43[info]: [b46f1bad-9c39-4c16-8344-ce3afe67fc80]생성되었습니다.:',\n 'uid' => 178,\n)\n10:05:43[info]: [작업이 성공적으로 완료되었습니다.]생성되었습니다.:\n10:05:43[debug]: App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','default',NULL,'2025-06-26 01:05:43',NULL),(180,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:03:46[debug]: 입력내용\n11:03:46[debug]: array (\n 'code' => 'R35P10',\n 'status' => 'default',\n)\n11:03:46[debug]: [1/R35P10] 입력 후 내용\n11:03:46[debug]: array (\n 'code' => 'R35P10',\n 'status' => 'default',\n 'uid' => 1,\n)\n11:03:46[info]: [R35P10]생성되었습니다.:','default',NULL,'2025-06-26 02:03:46',NULL),(181,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:04:01[debug]: 입력내용\n11:04:01[debug]: array (\n 'code' => 'R45P10',\n 'status' => 'default',\n)\n11:04:01[debug]: [2/R45P10] 입력 후 내용\n11:04:01[debug]: array (\n 'code' => 'R45P10',\n 'status' => 'default',\n 'uid' => 2,\n)\n11:04:01[info]: [R45P10]생성되었습니다.:','default',NULL,'2025-06-26 02:04:01',NULL),(182,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:04:15[debug]: 입력내용\n11:04:15[debug]: array (\n 'code' => 'R45P20',\n 'status' => 'default',\n)\n11:04:15[debug]: [3/R45P20] 입력 후 내용\n11:04:15[debug]: array (\n 'code' => 'R45P20',\n 'status' => 'default',\n 'uid' => 3,\n)\n11:04:15[info]: [R45P20]생성되었습니다.:','default',NULL,'2025-06-26 02:04:15',NULL),(183,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:04:31[debug]: 입력내용\n11:04:31[debug]: array (\n 'code' => 'ZEN100',\n 'status' => 'default',\n)\n11:04:31[debug]: [1/ZEN100] 입력 후 내용\n11:04:31[debug]: array (\n 'code' => 'ZEN100',\n 'status' => 'default',\n 'uid' => 1,\n)\n11:04:31[info]: [ZEN100]생성되었습니다.:','default',NULL,'2025-06-26 02:04:31',NULL),(184,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:04:44[debug]: 입력내용\n11:04:44[debug]: array (\n 'code' => 'JPN-R420',\n 'status' => 'default',\n)\n11:04:44[debug]: [2/JPN-R420] 입력 후 내용\n11:04:44[debug]: array (\n 'code' => 'JPN-R420',\n 'status' => 'default',\n 'uid' => 2,\n)\n11:04:44[info]: [JPN-R420]생성되었습니다.:','default',NULL,'2025-06-26 02:04:44',NULL),(185,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:05:00[debug]: 입력내용\n11:05:00[debug]: array (\n 'code' => 'XEON-T249',\n 'status' => 'default',\n)\n11:05:00[debug]: [3/XEON-T249] 입력 후 내용\n11:05:00[debug]: array (\n 'code' => 'XEON-T249',\n 'status' => 'default',\n 'uid' => 3,\n)\n11:05:00[info]: [XEON-T249]생성되었습니다.:','default',NULL,'2025-06-26 02:05:00',NULL),(186,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:05:10[debug]: 입력내용\n11:05:10[debug]: array (\n 'code' => 'I3-T453',\n 'status' => 'default',\n)\n11:05:10[debug]: [4/I3-T453] 입력 후 내용\n11:05:10[debug]: array (\n 'code' => 'I3-T453',\n 'status' => 'default',\n 'uid' => 4,\n)\n11:05:10[info]: [I3-T453]생성되었습니다.:','default',NULL,'2025-06-26 02:05:10',NULL),(187,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:05:22[debug]: 입력내용\n11:05:22[debug]: array (\n 'code' => 'I5-Z343',\n 'status' => 'default',\n)\n11:05:22[debug]: [5/I5-Z343] 입력 후 내용\n11:05:22[debug]: array (\n 'code' => 'I5-Z343',\n 'status' => 'default',\n 'uid' => 5,\n)\n11:05:22[info]: [I5-Z343]생성되었습니다.:','default',NULL,'2025-06-26 02:05:22',NULL),(188,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:05:34[debug]: 입력내용\n11:05:34[debug]: array (\n 'code' => 'I7-TXR2',\n 'status' => 'default',\n)\n11:05:34[debug]: [6/I7-TXR2] 입력 후 내용\n11:05:34[debug]: array (\n 'code' => 'I7-TXR2',\n 'status' => 'default',\n 'uid' => 6,\n)\n11:05:34[info]: [I7-TXR2]생성되었습니다.:','default',NULL,'2025-06-26 02:05:34',NULL),(189,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:05:46[debug]: 입력내용\n11:05:46[debug]: array (\n 'code' => 'I9-XT432',\n 'status' => 'default',\n)\n11:05:46[debug]: [7/I9-XT432] 입력 후 내용\n11:05:46[debug]: array (\n 'code' => 'I9-XT432',\n 'status' => 'default',\n 'uid' => 7,\n)\n11:05:46[info]: [I9-XT432]생성되었습니다.:','default',NULL,'2025-06-26 02:05:46',NULL),(190,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:06:03[debug]: 입력내용\n11:06:03[debug]: array (\n 'code' => 'M3456',\n 'status' => 'default',\n)\n11:06:03[debug]: [8/M3456] 입력 후 내용\n11:06:03[debug]: array (\n 'code' => 'M3456',\n 'status' => 'default',\n 'uid' => 8,\n)\n11:06:03[info]: [M3456]생성되었습니다.:','default',NULL,'2025-06-26 02:06:03',NULL),(191,1,'Customer/Service','getResultFail','Customer/Service 작업 데이터 검증 오류발생\nThe codeinfo_uid field is required.','11:33:36[debug]: Customer/Service 작업 데이터 검증 오류발생\nThe codeinfo_uid field is required.','default',NULL,'2025-06-26 02:33:36',NULL),(192,1,'Customer/Service','getResultFail','Undefined variable $ntity','13:01:40[debug]: Undefined variable $ntity','default',NULL,'2025-06-26 04:01:40',NULL),(193,1,'Customer/Service','getResultFail','Undefined variable $ntity','13:01:46[debug]: Undefined variable $ntity','default',NULL,'2025-06-26 04:01:46',NULL),(194,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:12:42[debug]: 입력내용\n13:12:42[debug]: array (\n 'code' => 'R30P24',\n 'status' => 'default',\n)\n13:12:42[debug]: [4/R30P24] 입력 후 내용\n13:12:42[debug]: array (\n 'code' => 'R30P24',\n 'status' => 'default',\n 'uid' => 4,\n)\n13:12:42[info]: [R30P24]생성되었습니다.:','default',NULL,'2025-06-26 04:12:42',NULL),(195,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:12:53[debug]: 입력내용\n13:12:53[debug]: array (\n 'code' => 'R30P14',\n 'status' => 'default',\n)\n13:12:53[debug]: [5/R30P14] 입력 후 내용\n13:12:53[debug]: array (\n 'code' => 'R30P14',\n 'status' => 'default',\n 'uid' => 5,\n)\n13:12:53[info]: [R30P14]생성되었습니다.:','default',NULL,'2025-06-26 04:12:53',NULL),(196,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:13:02[debug]: 입력내용\n13:13:02[debug]: array (\n 'code' => 'R20P21',\n 'status' => 'default',\n)\n13:13:02[debug]: [6/R20P21] 입력 후 내용\n13:13:02[debug]: array (\n 'code' => 'R20P21',\n 'status' => 'default',\n 'uid' => 6,\n)\n13:13:02[info]: [R20P21]생성되었습니다.:','default',NULL,'2025-06-26 04:13:02',NULL),(197,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:13:16[debug]: 입력내용\n13:13:16[debug]: array (\n 'code' => 'R12P10',\n 'status' => 'default',\n)\n13:13:16[debug]: [7/R12P10] 입력 후 내용\n13:13:16[debug]: array (\n 'code' => 'R12P10',\n 'status' => 'default',\n 'uid' => 7,\n)\n13:13:16[info]: [R12P10]생성되었습니다.:','default',NULL,'2025-06-26 04:13:16',NULL),(198,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:13:26[debug]: 입력내용\n13:13:26[debug]: array (\n 'code' => 'R07P10',\n 'status' => 'default',\n)\n13:13:26[debug]: [8/R07P10] 입력 후 내용\n13:13:26[debug]: array (\n 'code' => 'R07P10',\n 'status' => 'default',\n 'uid' => 8,\n)\n13:13:26[info]: [R07P10]생성되었습니다.:','default',NULL,'2025-06-26 04:13:26',NULL),(199,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:13:42[debug]: 입력내용\n13:13:42[debug]: array (\n 'code' => 'R44P10',\n 'status' => 'default',\n)\n13:13:42[debug]: [9/R44P10] 입력 후 내용\n13:13:42[debug]: array (\n 'code' => 'R44P10',\n 'status' => 'default',\n 'uid' => 9,\n)\n13:13:42[info]: [R44P10]생성되었습니다.:','default',NULL,'2025-06-26 04:13:42',NULL),(200,1,'Customer/ClientHistory','getResultSuccess','작업이 성공적으로 완료되었습니다.','14:57:53[debug]: 입력내용\n14:57:53[debug]: array (\n 'clientinfo_uid' => '7',\n 'title' => 'test777특이사항1',\n 'description' => '',\n)\n14:57:53[debug]: [1/test777특이사항1] 입력 후 내용\n14:57:53[debug]: array (\n 'clientinfo_uid' => '7',\n 'title' => 'test777특이사항1',\n 'uid' => 1,\n)\n14:57:53[info]: [test777특이사항1]생성되었습니다.:','default',NULL,'2025-06-26 05:57:53',NULL),(201,1,'Customer/ClientHistory','getResultSuccess','작업이 성공적으로 완료되었습니다.','14:58:04[debug]: 입력내용\n14:58:04[debug]: array (\n 'clientinfo_uid' => '7',\n 'title' => 'test777특이사항2',\n 'description' => '',\n)\n14:58:04[debug]: [2/test777특이사항2] 입력 후 내용\n14:58:04[debug]: array (\n 'clientinfo_uid' => '7',\n 'title' => 'test777특이사항2',\n 'uid' => 2,\n)\n14:58:04[info]: [test777특이사항2]생성되었습니다.:','default',NULL,'2025-06-26 05:58:04',NULL),(202,1,'Customer/ClientHistory','getResultSuccess','작업이 성공적으로 완료되었습니다.','14:58:26[debug]: 입력내용\n14:58:26[debug]: array (\n 'clientinfo_uid' => '4',\n 'title' => 'test444특이사항1',\n 'description' => '',\n)\n14:58:26[debug]: [3/test444특이사항1] 입력 후 내용\n14:58:26[debug]: array (\n 'clientinfo_uid' => '4',\n 'title' => 'test444특이사항1',\n 'uid' => 3,\n)\n14:58:26[info]: [test444특이사항1]생성되었습니다.:','default',NULL,'2025-06-26 05:58:26',NULL),(203,1,'Customer/ClientHistory','getResultSuccess','작업이 성공적으로 완료되었습니다.','14:58:35[debug]: 입력내용\n14:58:35[debug]: array (\n 'clientinfo_uid' => '4',\n 'title' => 'test444특이사항2',\n 'description' => '',\n)\n14:58:35[debug]: [4/test444특이사항2] 입력 후 내용\n14:58:35[debug]: array (\n 'clientinfo_uid' => '4',\n 'title' => 'test444특이사항2',\n 'uid' => 4,\n)\n14:58:35[info]: [test444특이사항2]생성되었습니다.:','default',NULL,'2025-06-26 05:58:35',NULL),(204,1,'Customer/Service','getResultFail','Customer/Service 작업 데이터 검증 오류발생\nThe switchinfo_uid field is required.','11:27:18[debug]: Customer/Service 작업 데이터 검증 오류발생\nThe switchinfo_uid field is required.','default',NULL,'2025-06-30 02:27:18',NULL),(205,1,'Customer/Service','getResultFail','Customer/Service 작업 데이터 검증 오류발생\nThe switchinfo_uid field is required.','11:27:56[debug]: Customer/Service 작업 데이터 검증 오류발생\nThe switchinfo_uid field is required.','default',NULL,'2025-06-30 02:27:56',NULL),(206,1,'Customer/Service','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:36:21[debug]: [3/S3] 변경 전 내용\n11:36:21[debug]: array (\n 'clientinfo_uid' => '4',\n 'ownerinfo_uid' => '4',\n 'type' => 'dedicated',\n 'location' => 'default',\n 'switchinfo_uid' => '6',\n 'codeinfo_uid' => '7',\n 'raid' => 'RAID5',\n 'billing_at' => '2025-07-14',\n 'start_at' => '2025-06-04',\n 'status' => 'default',\n 'user_uid' => '1',\n)\n11:36:21[debug]: array (\n 'uid' => '3',\n 'clientinfo_uid' => '4',\n 'ownerinfo_uid' => '4',\n 'user_uid' => 1,\n 'switchinfo_uid' => '6',\n 'codeinfo_uid' => '7',\n 'location' => 'default',\n 'type' => 'dedicated',\n 'raid' => 'RAID5',\n 'billing_at' => '2025-07-18',\n 'start_at' => '2025-06-04',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-26 13:14:37.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-11 17:20:37.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n11:36:21[debug]: [3/S3] 변경 후 내용\n11:36:21[debug]: array (\n 'uid' => '3',\n 'clientinfo_uid' => '4',\n 'ownerinfo_uid' => '4',\n 'user_uid' => 1,\n 'switchinfo_uid' => '6',\n 'codeinfo_uid' => '7',\n 'location' => 'default',\n 'type' => 'dedicated',\n 'raid' => 'RAID5',\n 'billing_at' => '2025-07-14',\n 'start_at' => '2025-06-04',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-30 11:36:21.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-11 17:20:37.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n11:36:21[info]: [S3]수정되였습니다.:','default',NULL,'2025-06-30 02:36:21',NULL),(207,1,'Customer/Service','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:36:42[debug]: [1/S1] 변경 전 내용\n11:36:42[debug]: array (\n 'clientinfo_uid' => '1',\n 'ownerinfo_uid' => '1',\n 'type' => 'defence',\n 'location' => 'tokyo',\n 'switchinfo_uid' => '9',\n 'codeinfo_uid' => '8',\n 'raid' => 'RAID1',\n 'billing_at' => '2025-07-22',\n 'start_at' => '2025-06-02',\n 'status' => 'default',\n 'user_uid' => '1',\n)\n11:36:42[debug]: array (\n 'uid' => '1',\n 'clientinfo_uid' => '1',\n 'ownerinfo_uid' => '1',\n 'user_uid' => 1,\n 'switchinfo_uid' => '9',\n 'codeinfo_uid' => '8',\n 'location' => 'tokyo',\n 'type' => 'defence',\n 'raid' => 'RAID1',\n 'billing_at' => '2025-07-18',\n 'start_at' => '2025-06-02',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-26 13:14:55.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-02 12:37:30.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n11:36:42[debug]: [1/S1] 변경 후 내용\n11:36:42[debug]: array (\n 'uid' => '1',\n 'clientinfo_uid' => '1',\n 'ownerinfo_uid' => '1',\n 'user_uid' => 1,\n 'switchinfo_uid' => '9',\n 'codeinfo_uid' => '8',\n 'location' => 'tokyo',\n 'type' => 'defence',\n 'raid' => 'RAID1',\n 'billing_at' => '2025-07-22',\n 'start_at' => '2025-06-02',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-30 11:36:42.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-02 12:37:30.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n11:36:42[info]: [S1]수정되였습니다.:','default',NULL,'2025-06-30 02:36:42',NULL),(208,1,'Customer/Service','getResultFail','Undefined array key \"entity\"','10:10:14[debug]: Undefined array key "entity"','default',NULL,'2025-07-01 01:10:14',NULL),(209,1,'Customer/Service','getResultFail','Uninitialized string offset 8','10:16:16[debug]: Uninitialized string offset 8','default',NULL,'2025-07-01 01:16:16',NULL),(210,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','15:05:11[debug]: 입력내용\n15:05:11[debug]: array (\n 'id' => 'test1234',\n 'passwd' => '1234',\n 'confirmpassword' => '1234',\n 'name' => 'test1234',\n 'email' => 'test@gmail.com',\n 'mobile' => '0434434327',\n 'role' => 'manager,cloudflare,firewall,security,director,master',\n)\n15:05:11[debug]: [43/test1234] 입력 후 내용\n15:05:11[debug]: array (\n 'id' => 'test1234',\n 'passwd' => '$2y$10$21wlqjmdfDlIr0vAjDzs6ubIchc1DwOG61GGkZUwY7gb9GMTxA96K',\n 'confirmpassword' => '$2y$10$gEzC/vDJ9s0rPMe0zl0HFu3N2R7PkDHBC1xlH6gPBj2CYZKe4RHDG',\n 'name' => 'test1234',\n 'email' => 'test@gmail.com',\n 'mobile' => '0434434327',\n 'role' => 'manager,cloudflare,firewall,security,director,master',\n 'uid' => 43,\n)\n15:05:11[info]: [test1234]생성되었습니다.:','default',NULL,'2025-07-01 06:05:11',NULL),(211,1,'User','getResultFail','Undefined array key \"mast\"','15:05:11[debug]: 입력내용\n15:05:11[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'User',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '15:05:11[debug]: 입력내용\n15:05:11[debug]: array (\n \\'id\\' => \\'test1234\\',\n \\'passwd\\' => \\'1234\\',\n \\'confirmpassword\\' => \\'1234\\',\n \\'name\\' => \\'test1234\\',\n \\'email\\' => \\'test@gmail.com\\',\n \\'mobile\\' => \\'0434434327\\',\n \\'role\\' => \\'manager,cloudflare,firewall,security,director,master\\',\n)\n15:05:11[debug]: [43/test1234] 입력 후 내용\n15:05:11[debug]: array (\n \\'id\\' => \\'test1234\\',\n \\'passwd\\' => \\'$2y$10$21wlqjmdfDlIr0vAjDzs6ubIchc1DwOG61GGkZUwY7gb9GMTxA96K\\',\n \\'confirmpassword\\' => \\'$2y$10$gEzC/vDJ9s0rPMe0zl0HFu3N2R7PkDHBC1xlH6gPBj2CYZKe4RHDG\\',\n \\'name\\' => \\'test1234\\',\n \\'email\\' => \\'test@gmail.com\\',\n \\'mobile\\' => \\'0434434327\\',\n \\'role\\' => \\'manager,cloudflare,firewall,security,director,master\\',\n \\'uid\\' => 43,\n)\n15:05:11[info]: [test1234]생성되었습니다.:',\n)\n15:05:11[debug]: [210/작업이 성공적으로 완료되었습니다.] 입력 후 내용\n15:05:11[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'User',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '15:05:11[debug]: 입력내용\n15:05:11[debug]: array (\n &#039;id&#039; =&gt; &#039;test1234&#039;,\n &#039;passwd&#039; =&gt; &#039;1234&#039;,\n &#039;confirmpassword&#039; =&gt; &#039;1234&#039;,\n &#039;name&#039; =&gt; &#039;test1234&#039;,\n &#039;email&#039; =&gt; &#039;test@gmail.com&#039;,\n &#039;mobile&#039; =&gt; &#039;0434434327&#039;,\n &#039;role&#039; =&gt; &#039;manager,cloudflare,firewall,security,director,master&#039;,\n)\n15:05:11[debug]: [43/test1234] 입력 후 내용\n15:05:11[debug]: array (\n &#039;id&#039; =&gt; &#039;test1234&#039;,\n &#039;passwd&#039; =&gt; &#039;$2y$10$21wlqjmdfDlIr0vAjDzs6ubIchc1DwOG61GGkZUwY7gb9GMTxA96K&#039;,\n &#039;confirmpassword&#039; =&gt; &#039;$2y$10$gEzC/vDJ9s0rPMe0zl0HFu3N2R7PkDHBC1xlH6gPBj2CYZKe4RHDG&#039;,\n &#039;name&#039; =&gt; &#039;test1234&#039;,\n &#039;email&#039; =&gt; &#039;test@gmail.com&#039;,\n &#039;mobile&#039; =&gt; &#039;0434434327&#039;,\n &#039;role&#039; =&gt; &#039;manager,cloudflare,firewall,security,director,master&#039;,\n &#039;uid&#039; =&gt; 43,\n)\n15:05:11[info]: [test1234]생성되었습니다.:',\n 'uid' => 210,\n)\n15:05:11[info]: [작업이 성공적으로 완료되었습니다.]생성되었습니다.:\n15:05:11[debug]: Undefined array key "mast"','default',NULL,'2025-07-01 06:05:11',NULL),(212,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe id field must contain a unique value.\nThe email field must contain a unique value.','15:05:21[debug]: User 작업 데이터 검증 오류발생\nThe id field must contain a unique value.\nThe email field must contain a unique value.','default',NULL,'2025-07-01 06:05:21',NULL),(213,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','15:09:31[debug]: [43/test1234] 변경 전 내용\n15:09:31[debug]: array (\n 'id' => 'test1234',\n 'name' => 'test1234',\n 'email' => 'test@gmail.com',\n 'mobile' => '0434434327',\n 'role' => 'manager,cloudflare',\n)\n15:09:31[debug]: array (\n 'uid' => '43',\n 'id' => 'test1234',\n 'passwd' => '$2y$10$21wlqjmdfDlIr0vAjDzs6ubIchc1DwOG61GGkZUwY7gb9GMTxA96K',\n 'name' => 'test1234',\n 'email' => 'test@gmail.com',\n 'mobile' => '0434434327',\n 'role' => 'manager,cloudflare,firewall,security,director,master',\n 'status' => 'default',\n 'updated_at' => NULL,\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-07-01 15:05:11.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n15:09:31[debug]: [43/test1234] 변경 후 내용\n15:09:31[debug]: array (\n 'uid' => '43',\n 'id' => 'test1234',\n 'passwd' => '$2y$10$21wlqjmdfDlIr0vAjDzs6ubIchc1DwOG61GGkZUwY7gb9GMTxA96K',\n 'name' => 'test1234',\n 'email' => 'test@gmail.com',\n 'mobile' => '0434434327',\n 'role' => 'manager,cloudflare',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-07-01 15:09:31.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-07-01 15:05:11.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n15:09:31[info]: [test1234]수정되였습니다.:','default',NULL,'2025-07-01 06:09:31',NULL),(214,1,'User','getResultFail','Undefined array key \"filter_optons\"','15:47:00[debug]: Undefined array key "filter_optons"','default',NULL,'2025-07-01 06:47:00',NULL),(215,1,'User','getResultFail','Undefined array key \"filter_optons\"','15:48:31[debug]: Undefined array key "filter_optons"','default',NULL,'2025-07-01 06:48:31',NULL),(216,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','15:48:53[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-01 06:48:53',NULL),(217,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','08:59:02[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-01 23:59:02',NULL),(218,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','13:19:14[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 04:19:14',NULL),(219,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','13:20:53[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 04:20:53',NULL),(220,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','16:05:25[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 07:05:25',NULL),(221,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','16:20:59[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 07:20:59',NULL),(222,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','16:21:08[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 07:21:08',NULL),(223,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','16:23:25[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 07:23:25',NULL),(224,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','16:23:32[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 07:23:32',NULL),(225,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','16:26:24[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 07:26:24',NULL),(226,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','16:26:34[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 07:26:34',NULL),(227,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','16:48:04[info]: [최준흠]수정되였습니다.:','default',NULL,'2025-07-02 07:48:04',NULL),(228,1,'User','getResultFail','\n------App\\Models\\CommonModel::save_process 오류-----\narray (\n \'CodeIgniter\\\\Database\\\\MySQLi\\\\Connection\' => \'Duplicate entry \\\'cho.jh\\\' for key \\\'UQ_id\\\'\',\n)\n------------------------------\n','16:51:06[debug]: \n------App\\Models\\CommonModel::save_process 오류-----\narray (\n 'CodeIgniter\\\\Database\\\\MySQLi\\\\Connection' => 'Duplicate entry \\'cho.jh\\' for key \\'UQ_id\\'',\n)\n------------------------------\n\n16:51:06[debug]: \n------App\\Models\\CommonModel::save_process 오류-----\narray (\n 'CodeIgniter\\\\Database\\\\MySQLi\\\\Connection' => 'Duplicate entry \\'cho.jh\\' for key \\'UQ_id\\'',\n)\n------------------------------\n','default',NULL,'2025-07-02 07:51:06',NULL),(229,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','16:51:24[info]: [최준흠111]수정되였습니다.:','default',NULL,'2025-07-02 07:51:24',NULL),(230,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','16:53:46[info]: [최준흠]수정되였습니다.:','default',NULL,'2025-07-02 07:53:46',NULL); +INSERT INTO `logger` VALUES (1,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:22:57[debug]: 입력내용\n13:22:57[debug]: array (\n 'serviceinfo_uid' => '3',\n 'item_type' => 'STORAGE',\n 'item_uid' => '1',\n 'billing_cycle' => 'onetime',\n 'price' => '100000',\n 'amount' => '50000',\n 'start_at' => '2025-06-17',\n 'status' => 'default',\n)\n13:22:57[debug]: [67/STORAGE] 입력 후 내용\n13:22:57[debug]: array (\n 'serviceinfo_uid' => '3',\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'price' => 100000,\n 'amount' => 50000,\n 'start_at' => '2025-06-17',\n 'status' => 'default',\n 'uid' => 67,\n)\n13:22:57[info]: [STORAGE]생성되었습니다.:\n13:22:57[debug]: 입력내용\n13:22:57[debug]: array (\n 'serviceinfo_uid' => 3,\n 'ownerinfo_uid' => 4,\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'amount' => 50000,\n 'billing_at' => '2025-07-18',\n 'issue_at' => '2025-06-18',\n)\n13:22:57[debug]: [68/STORAGE] 입력 후 내용\n13:22:57[debug]: array (\n 'serviceinfo_uid' => 3,\n 'ownerinfo_uid' => 4,\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'amount' => 50000,\n 'billing_at' => '2025-07-18',\n 'issue_at' => '2025-06-18',\n 'uid' => 68,\n)\n13:22:57[info]: [STORAGE]생성되었습니다.:','default',NULL,'2025-06-18 04:22:57',NULL),(2,1,'Customer/ServiceItem','getResultFail','Undefined array key \"DOMAIN\"','15:59:32[debug]: Undefined array key "DOMAIN"','default',NULL,'2025-06-18 06:59:32',NULL),(3,1,'Customer/ServiceItem','getResultFail','Undefined array key \"DEFENCE\"','15:59:50[debug]: Undefined array key "DEFENCE"','default',NULL,'2025-06-18 06:59:50',NULL),(4,1,'Customer/ServiceItem','getResultFail','Undefined array key \"SERVER\"','16:01:25[debug]: Undefined array key "SERVER"','default',NULL,'2025-06-18 07:01:25',NULL),(5,1,'Customer/ServiceItem','getResultFail','Undefined array key \"CPU\"','16:32:17[debug]: Undefined array key "CPU"','default',NULL,'2025-06-18 07:32:17',NULL),(6,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','16:32:27[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 07:32:27',NULL),(7,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','16:45:06[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 07:45:06',NULL),(8,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','16:48:07[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 07:48:07',NULL),(9,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','16:49:13[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 07:49:13',NULL),(10,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:00:15[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:00:15',NULL),(11,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:00:54[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:00:54',NULL),(12,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RA\"','17:05:22[debug]: Undefined array key "RA"','default',NULL,'2025-06-18 08:05:22',NULL),(13,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:05:30[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:05:30',NULL),(14,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:07:50[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:07:50',NULL),(15,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:09:10[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:09:10',NULL),(16,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:09:49[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:09:49',NULL),(17,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:09:55[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:09:55',NULL),(18,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:11:03[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:11:03',NULL),(19,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:11:49[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:11:49',NULL),(20,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:13:47[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:13:47',NULL),(21,1,'Customer/ServiceItem','getResultFail','getFormFieldOption에서 item_type이 지정되지 않았습니다.','17:14:45[debug]: getFormFieldOption에서 item_type이 지정되지 않았습니다.','default',NULL,'2025-06-18 08:14:45',NULL),(22,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:16:43[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:16:43',NULL),(23,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:20:49[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:20:49',NULL),(24,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:21:41[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:21:41',NULL),(25,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:24:39[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:24:39',NULL),(26,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:26:34[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:26:34',NULL),(27,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:32:27[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:32:27',NULL),(28,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','17:37:15[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-18 08:37:15',NULL),(29,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','17:37:16[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 08:37:16',NULL),(30,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','17:37:58[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-18 08:37:58',NULL),(31,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','17:37:58[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 08:37:58',NULL),(32,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','17:42:05[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-18 08:42:05',NULL),(33,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','17:42:05[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 08:42:05',NULL),(34,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','17:45:02[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-18 08:45:02',NULL),(35,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','17:45:02[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 08:45:02',NULL),(36,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','17:48:55[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-18 08:48:55',NULL),(37,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','17:48:55[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 08:48:55',NULL),(38,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','17:50:46[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-18 08:50:46',NULL),(39,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','17:50:46[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 08:50:46',NULL),(40,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','18:25:49[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-18 09:25:49',NULL),(41,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','18:25:49[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 09:25:49',NULL),(42,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','18:48:54[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 09:48:54',NULL),(43,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','18:48:54[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 09:48:54',NULL),(44,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','18:49:21[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 09:49:21',NULL),(45,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','18:49:21[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 09:49:21',NULL),(46,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','19:05:56[debug]: 입력내용\n19:05:56[debug]: array (\n 'serviceinfo_uid' => '3',\n 'item_type' => 'CPU',\n 'item_uid' => '1',\n 'billing_cycle' => 'onetime',\n 'price' => '10000',\n 'amount' => '10000',\n 'start_at' => '2025-06-18',\n 'status' => 'default',\n)\n19:05:56[debug]: [68/CPU] 입력 후 내용\n19:05:56[debug]: array (\n 'serviceinfo_uid' => '3',\n 'item_type' => 'CPU',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'price' => 10000,\n 'amount' => 10000,\n 'start_at' => '2025-06-18',\n 'status' => 'default',\n 'uid' => 68,\n)\n19:05:56[info]: [CPU]생성되었습니다.:\n19:05:56[debug]: 입력내용\n19:05:56[debug]: array (\n 'serviceinfo_uid' => 3,\n 'ownerinfo_uid' => 4,\n 'item_type' => 'CPU',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'amount' => 10000,\n 'billing_at' => '2025-07-18',\n 'issue_at' => '2025-06-18',\n)\n19:05:56[debug]: [69/CPU] 입력 후 내용\n19:05:56[debug]: array (\n 'serviceinfo_uid' => 3,\n 'ownerinfo_uid' => 4,\n 'item_type' => 'CPU',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'amount' => 10000,\n 'billing_at' => '2025-07-18',\n 'issue_at' => '2025-06-18',\n 'uid' => 69,\n)\n19:05:56[info]: [CPU]생성되었습니다.:','default',NULL,'2025-06-18 10:05:56',NULL),(47,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','14:15:52[debug]: Undefined array key 1','default',NULL,'2025-06-19 05:15:52',NULL),(48,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','14:16:08[debug]: Undefined array key 1','default',NULL,'2025-06-19 05:16:08',NULL),(49,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','14:17:23[debug]: Undefined array key 1','default',NULL,'2025-06-19 05:17:23',NULL),(50,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','14:21:10[debug]: Undefined array key 1','default',NULL,'2025-06-19 05:21:10',NULL),(51,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','14:21:57[debug]: Undefined array key 1','default',NULL,'2025-06-19 05:21:57',NULL),(52,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','15:38:33[debug]: Undefined array key 1','default',NULL,'2025-06-19 06:38:33',NULL),(53,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','15:40:29[debug]: Undefined array key 1','default',NULL,'2025-06-19 06:40:29',NULL),(54,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','15:41:26[debug]: Undefined array key 1','default',NULL,'2025-06-19 06:41:26',NULL),(55,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','15:42:28[debug]: Undefined array key 1','default',NULL,'2025-06-19 06:42:28',NULL),(56,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','15:42:40[debug]: Undefined array key 1','default',NULL,'2025-06-19 06:42:40',NULL),(57,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','08:55:26[debug]: 입력내용\n08:55:26[debug]: array (\n 'id' => 'test1111222',\n 'passwd' => '1234',\n 'confirmpassword' => '1234',\n 'name' => 'test111122',\n 'email' => 'test112@co.kr',\n 'mobile' => 'asdfsfd',\n 'role' => 'manager',\n)\n08:55:26[debug]: [42/test111122] 입력 후 내용\n08:55:26[debug]: array (\n 'id' => 'test1111222',\n 'passwd' => '$2y$10$eS3FE/GgRZv8p02dYu4C4O1lze5lnHrD9BwzzMgs.0uP5zqSTWMvC',\n 'confirmpassword' => '$2y$10$qdy/FuAzx4LVvrVdREEvwOqGwpc5KHk5g/lxMuvSnPDKUx38phRNu',\n 'name' => 'test111122',\n 'email' => 'test112@co.kr',\n 'mobile' => 'asdfsfd',\n 'role' => 'manager',\n 'uid' => 42,\n)\n08:55:26[info]: [test111122]생성되었습니다.:','default',NULL,'2025-06-19 23:55:26',NULL),(58,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe confirmpassword field does not match the passwd field.','08:56:22[debug]: User 작업 데이터 검증 오류발생\nThe confirmpassword field does not match the passwd field.','default',NULL,'2025-06-19 23:56:22',NULL),(59,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','08:56:32[debug]: [41/test333334] 변경 전 내용\n08:56:32[debug]: array (\n 'id' => 'test33333433',\n 'passwd' => '12341234',\n 'confirmpassword' => '12341234',\n 'name' => 'test33333433',\n 'email' => 'test@test.co.kr233',\n 'mobile' => '111111222233',\n 'role' => 'manager,cloudflare,firewall',\n)\n08:56:32[debug]: array (\n 'uid' => '41',\n 'id' => 'test333334',\n 'passwd' => '$2y$10$eQXPQIvkuvnBc11hURs/K.mO44cHovtEdVpQ9QMLbu7H7bsspmJEO',\n 'name' => 'test333334',\n 'email' => 'test@test.co.kr2',\n 'mobile' => '1111112222',\n 'role' => 'manager,cloudflare',\n 'status' => 'pause',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 08:55:55.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-11 16:36:53.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n08:56:33[debug]: [41/test33333433] 변경 후 내용\n08:56:33[debug]: array (\n 'uid' => '41',\n 'id' => 'test33333433',\n 'passwd' => '$2y$10$8qFLTLnJJbRvIDLzlfauSOJvD.B.aIH6l0yKo2K7xo6m02cdXNvg.',\n 'name' => 'test33333433',\n 'email' => 'test@test.co.kr233',\n 'mobile' => '111111222233',\n 'role' => 'manager,cloudflare,firewall',\n 'status' => 'pause',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 08:56:33.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-11 16:36:53.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'confirmpassword' => '$2y$10$OgSt7eWGOTUdd3yFolpL2OXlJZXt9DXqLDqfTcckgBvOfk5Qd.1fq',\n)\n08:56:33[info]: [test33333433]수정되였습니다.:','default',NULL,'2025-06-19 23:56:33',NULL),(60,1,'Customer/Coupon','getResultSuccess','작업이 성공적으로 완료되었습니다.','08:57:35[debug]: [4/Test444] 변경 전 내용\n08:57:35[debug]: array (\n 'coupon_balance' => 10,\n)\n08:57:35[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-09 16:38:48.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n08:57:35[debug]: [4/Test444] 변경 후 내용\n08:57:35[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 10,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 08:57:35.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n08:57:35[info]: [Test444]수정되였습니다.:\n08:57:35[debug]: 입력내용\n08:57:35[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test111',\n 'amount' => '10',\n)\n08:57:35[debug]: [3/test111] 입력 후 내용\n08:57:35[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test111',\n 'amount' => '10',\n 'uid' => 3,\n)\n08:57:35[info]: [test111]생성되었습니다.:','default',NULL,'2025-06-19 23:57:35',NULL),(61,1,'Customer/Coupon','getResultFail','잔여액,잔여 쿠폰갯수:0 < 출금액 , 사용쿠폰갯수: 45보다 작습니다.','08:57:57[debug]: 잔여액,잔여 쿠폰갯수:0 < 출금액 , 사용쿠폰갯수: 45보다 작습니다.','default',NULL,'2025-06-19 23:57:57',NULL),(62,1,'Customer/Coupon','getResultFail','Undefined array key \"status\"','08:57:58[debug]: Undefined array key "status"','default',NULL,'2025-06-19 23:57:58',NULL),(63,1,'Customer/Coupon','getResultSuccess','작업이 성공적으로 완료되었습니다.','08:58:04[debug]: [4/Test444] 변경 전 내용\n08:58:04[debug]: array (\n 'coupon_balance' => 343,\n)\n08:58:04[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 10,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 08:57:35.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n08:58:04[debug]: [4/Test444] 변경 후 내용\n08:58:04[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 343,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 08:58:04.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n08:58:04[info]: [Test444]수정되였습니다.:\n08:58:04[debug]: 입력내용\n08:58:04[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test',\n 'amount' => '343',\n)\n08:58:04[debug]: [4/test] 입력 후 내용\n08:58:04[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test',\n 'amount' => '343',\n 'uid' => 4,\n)\n08:58:04[info]: [test]생성되었습니다.:','default',NULL,'2025-06-19 23:58:04',NULL),(64,1,'Customer/Coupon','getResultFail','잔여액,잔여 쿠폰갯수:0 < 출금액 , 사용쿠폰갯수: 2234보다 작습니다.','08:58:18[debug]: 잔여액,잔여 쿠폰갯수:0 < 출금액 , 사용쿠폰갯수: 2234보다 작습니다.','default',NULL,'2025-06-19 23:58:18',NULL),(65,1,'Customer/Coupon','getResultFail','Undefined array key \"status\"','08:58:18[debug]: Undefined array key "status"','default',NULL,'2025-06-19 23:58:18',NULL),(66,1,'Customer/Coupon','getResultFail','잔여액,잔여 쿠폰갯수:0 < 출금액 , 사용쿠폰갯수: 1234보다 작습니다.','08:58:36[debug]: 잔여액,잔여 쿠폰갯수:0 < 출금액 , 사용쿠폰갯수: 1234보다 작습니다.','default',NULL,'2025-06-19 23:58:36',NULL),(67,1,'Customer/Coupon','getResultFail','Undefined array key \"status\"','08:58:36[debug]: Undefined array key "status"','default',NULL,'2025-06-19 23:58:36',NULL),(68,1,'Customer/Coupon','getResultFail','Invalid file: \"admin/popup/modify_form.php\"','08:59:25[debug]: Invalid file: "admin/popup/modify_form.php"','default',NULL,'2025-06-19 23:59:25',NULL),(69,1,'Customer/Coupon','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:00:35[debug]: [4/Test444] 변경 전 내용\n09:00:35[debug]: array (\n 'coupon_balance' => 222,\n)\n09:00:35[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 343,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 08:58:04.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:00:35[debug]: [4/Test444] 변경 후 내용\n09:00:35[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 222,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:00:35.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:00:35[info]: [Test444]수정되였습니다.:\n09:00:35[debug]: 입력내용\n09:00:35[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test',\n 'amount' => '222',\n)\n09:00:35[debug]: [5/test] 입력 후 내용\n09:00:35[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test',\n 'amount' => '222',\n 'uid' => 5,\n)\n09:00:35[info]: [test]생성되었습니다.:','default',NULL,'2025-06-20 00:00:35',NULL),(70,1,'Customer/Coupon','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:28:07[debug]: [4/Test444] 변경 전 내용\n09:28:07[debug]: array (\n 'coupon_balance' => 1222,\n)\n09:28:07[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 222,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:00:35.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:28:07[debug]: [4/Test444] 변경 후 내용\n09:28:07[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 1222,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:28:07.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:28:07[info]: [Test444]수정되였습니다.:\n09:28:07[debug]: 입력내용\n09:28:07[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test222',\n 'amount' => '1000',\n)\n09:28:07[debug]: [6/test222] 입력 후 내용\n09:28:07[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test222',\n 'amount' => '1000',\n 'uid' => 6,\n)\n09:28:07[info]: [test222]생성되었습니다.:','default',NULL,'2025-06-20 00:28:07',NULL),(71,1,'Customer/Coupon','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:28:39[debug]: [4/Test444] 변경 전 내용\n09:28:39[debug]: array (\n 'coupon_balance' => 1223,\n)\n09:28:39[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 1222,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:28:07.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:28:39[debug]: [4/Test444] 변경 후 내용\n09:28:39[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 1223,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:28:39.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:28:39[info]: [Test444]수정되였습니다.:\n09:28:39[debug]: [3/test111] 변경 전 내용\n09:28:39[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test111',\n 'amount' => '1',\n)\n09:28:39[debug]: array (\n 'uid' => '3',\n 'clientinfo_uid' => '4',\n 'title' => 'test111',\n 'amount' => '10',\n 'status' => 'default',\n 'updated_at' => NULL,\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 08:57:35.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:28:39[debug]: [3/test111] 변경 후 내용\n09:28:39[debug]: array (\n 'uid' => '3',\n 'clientinfo_uid' => '4',\n 'title' => 'test111',\n 'amount' => '1',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:28:39.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 08:57:35.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:28:39[info]: [test111]수정되였습니다.:','default',NULL,'2025-06-20 00:28:39',NULL),(72,1,'Customer/Coupon','getResultFail','Undefined array key \"clientinfo_uid\"','09:28:54[debug]: Undefined array key "clientinfo_uid"','default',NULL,'2025-06-20 00:28:54',NULL),(73,1,'Customer/Coupon','getResultFail','Undefined array key \"clientinfo_uid\"','09:29:27[debug]: Undefined array key "clientinfo_uid"','default',NULL,'2025-06-20 00:29:27',NULL),(74,1,'Customer/Point','getResultFail','변경할 조건항목을 선택하셔야합니다.','09:36:08[debug]: 변경할 조건항목을 선택하셔야합니다.','default',NULL,'2025-06-20 00:36:08',NULL),(75,1,'Customer/Client','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:41:10[debug]: 입력내용\n09:41:10[debug]: array (\n 'name' => 'Test5555',\n 'email' => 'test555@test.co.kr',\n 'phone' => '234-234',\n 'role' => 'user,vip',\n)\n09:41:10[debug]: [5/Test5555] 입력 후 내용\n09:41:10[debug]: array (\n 'name' => 'Test5555',\n 'email' => 'test555@test.co.kr',\n 'phone' => '234-234',\n 'role' => 'user,vip',\n 'uid' => 5,\n)\n09:41:10[info]: [Test5555]생성되었습니다.:','default',NULL,'2025-06-20 00:41:10',NULL),(76,1,'Customer/Account','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:41:39[debug]: [5/Test5555] 변경 전 내용\n09:41:39[debug]: array (\n 'account_balance' => 10000,\n)\n09:41:39[debug]: array (\n 'uid' => '5',\n 'role' => 'user,vip',\n 'name' => 'Test5555',\n 'phone' => '234-234',\n 'email' => 'test555@test.co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => NULL,\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:41:10.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:41:39[debug]: [5/Test5555] 변경 후 내용\n09:41:39[debug]: array (\n 'uid' => '5',\n 'role' => 'user,vip',\n 'name' => 'Test5555',\n 'phone' => '234-234',\n 'email' => 'test555@test.co.kr',\n 'account_balance' => 10000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:41:39.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:41:10.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:41:39[info]: [Test5555]수정되였습니다.:\n09:41:39[debug]: 입력내용\n09:41:39[debug]: array (\n 'clientinfo_uid' => '5',\n 'status' => 'default',\n 'alias' => 'test555',\n 'title' => 'test1',\n 'amount' => '10000',\n)\n09:41:39[debug]: [4/test1] 입력 후 내용\n09:41:39[debug]: array (\n 'clientinfo_uid' => '5',\n 'status' => 'default',\n 'alias' => 'test555',\n 'title' => 'test1',\n 'amount' => '10000',\n 'uid' => 4,\n)\n09:41:39[info]: [test1]생성되었습니다.:','default',NULL,'2025-06-20 00:41:39',NULL),(77,1,'Customer/Account','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:41:56[debug]: [5/Test5555] 변경 전 내용\n09:41:56[debug]: array (\n 'account_balance' => 40000,\n)\n09:41:56[debug]: array (\n 'uid' => '5',\n 'role' => 'user,vip',\n 'name' => 'Test5555',\n 'phone' => '234-234',\n 'email' => 'test555@test.co.kr',\n 'account_balance' => 10000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:41:39.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:41:10.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:41:56[debug]: [5/Test5555] 변경 후 내용\n09:41:56[debug]: array (\n 'uid' => '5',\n 'role' => 'user,vip',\n 'name' => 'Test5555',\n 'phone' => '234-234',\n 'email' => 'test555@test.co.kr',\n 'account_balance' => 40000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:41:56.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:41:10.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:41:56[info]: [Test5555]수정되였습니다.:\n09:41:56[debug]: 입력내용\n09:41:56[debug]: array (\n 'clientinfo_uid' => '5',\n 'status' => 'default',\n 'alias' => 'test5555',\n 'title' => 'test2',\n 'amount' => '30000',\n)\n09:41:56[debug]: [5/test2] 입력 후 내용\n09:41:56[debug]: array (\n 'clientinfo_uid' => '5',\n 'status' => 'default',\n 'alias' => 'test5555',\n 'title' => 'test2',\n 'amount' => '30000',\n 'uid' => 5,\n)\n09:41:56[info]: [test2]생성되었습니다.:','default',NULL,'2025-06-20 00:41:56',NULL),(78,1,'Customer/Account','getResultFail','예치금[40000]이 출금액:200000보다 부족합니다.','09:42:14[debug]: 예치금[40000]이 출금액:200000보다 부족합니다.','default',NULL,'2025-06-20 00:42:14',NULL),(79,1,'Customer/Account','getResultFail','Undefined array key \"status\"','09:42:14[debug]: Undefined array key "status"','default',NULL,'2025-06-20 00:42:14',NULL),(80,1,'Customer/Account','getResultFail','예치금[40000]이 출금액:54555555보다 부족합니다.','09:43:59[debug]: 예치금[40000]이 출금액:54555555보다 부족합니다.','default',NULL,'2025-06-20 00:43:59',NULL),(81,1,'Customer/Account','getResultFail','Undefined array key \"status\"','09:43:59[debug]: Undefined array key "status"','default',NULL,'2025-06-20 00:43:59',NULL),(82,1,'Customer/Account','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:44:36[debug]: [5/Test5555] 변경 전 내용\n09:44:36[debug]: array (\n 'account_balance' => 484444,\n)\n09:44:36[debug]: array (\n 'uid' => '5',\n 'role' => 'user,vip',\n 'name' => 'Test5555',\n 'phone' => '234-234',\n 'email' => 'test555@test.co.kr',\n 'account_balance' => 40000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:41:56.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:41:10.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:44:36[debug]: [5/Test5555] 변경 후 내용\n09:44:36[debug]: array (\n 'uid' => '5',\n 'role' => 'user,vip',\n 'name' => 'Test5555',\n 'phone' => '234-234',\n 'email' => 'test555@test.co.kr',\n 'account_balance' => 484444,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:44:36.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:41:10.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:44:36[info]: [Test5555]수정되였습니다.:\n09:44:36[debug]: 입력내용\n09:44:36[debug]: array (\n 'clientinfo_uid' => '5',\n 'status' => 'default',\n 'alias' => 'test55555',\n 'title' => 'test3',\n 'amount' => '444444',\n)\n09:44:36[debug]: [6/test3] 입력 후 내용\n09:44:36[debug]: array (\n 'clientinfo_uid' => '5',\n 'status' => 'default',\n 'alias' => 'test55555',\n 'title' => 'test3',\n 'amount' => '444444',\n 'uid' => 6,\n)\n09:44:36[info]: [test3]생성되었습니다.:','default',NULL,'2025-06-20 00:44:36',NULL),(83,1,'Customer/Account','getResultFail','예치금[484444]이 출금액:234234234보다 부족합니다.','09:44:54[debug]: 예치금[484444]이 출금액:234234234보다 부족합니다.','default',NULL,'2025-06-20 00:44:54',NULL),(84,1,'Customer/Account','getResultFail','Undefined array key \"status\"','09:44:54[debug]: Undefined array key "status"','default',NULL,'2025-06-20 00:44:54',NULL),(85,1,'Customer/Account','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:49:23[debug]: [5/Test5555] 변경 전 내용\n09:49:23[debug]: array (\n 'account_balance' => 2334718678,\n)\n09:49:23[debug]: array (\n 'uid' => '5',\n 'role' => 'user,vip',\n 'name' => 'Test5555',\n 'phone' => '234-234',\n 'email' => 'test555@test.co.kr',\n 'account_balance' => 484444,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:44:36.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:41:10.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:49:23[debug]: [5/Test5555] 변경 후 내용\n09:49:23[debug]: array (\n 'uid' => '5',\n 'role' => 'user,vip',\n 'name' => 'Test5555',\n 'phone' => '234-234',\n 'email' => 'test555@test.co.kr',\n 'account_balance' => 2334718678,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:49:23.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:41:10.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:49:23[info]: [Test5555]수정되였습니다.:\n09:49:23[debug]: 입력내용\n09:49:23[debug]: array (\n 'clientinfo_uid' => '5',\n 'status' => 'default',\n 'alias' => 'test5555',\n 'title' => 'test4',\n 'amount' => '2334234234',\n)\n09:49:23[debug]: [7/test4] 입력 후 내용\n09:49:23[debug]: array (\n 'clientinfo_uid' => '5',\n 'status' => 'default',\n 'alias' => 'test5555',\n 'title' => 'test4',\n 'amount' => '2334234234',\n 'uid' => 7,\n)\n09:49:23[info]: [test4]생성되었습니다.:','default',NULL,'2025-06-20 00:49:23',NULL),(86,1,'Customer/Client','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:51:01[debug]: 입력내용\n09:51:01[debug]: array (\n 'name' => 'Test666',\n 'email' => 'test666@test.co.kr',\n 'phone' => '234234',\n 'role' => 'user,reseller',\n)\n09:51:01[debug]: [6/Test666] 입력 후 내용\n09:51:01[debug]: array (\n 'name' => 'Test666',\n 'email' => 'test666@test.co.kr',\n 'phone' => '234234',\n 'role' => 'user,reseller',\n 'uid' => 6,\n)\n09:51:01[info]: [Test666]생성되었습니다.:','default',NULL,'2025-06-20 00:51:01',NULL),(87,1,'Customer/Account','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:51:46[debug]: [6/Test666] 변경 전 내용\n09:51:46[debug]: array (\n 'account_balance' => 10000,\n)\n09:51:46[debug]: array (\n 'uid' => '6',\n 'role' => 'user,reseller',\n 'name' => 'Test666',\n 'phone' => '234234',\n 'email' => 'test666@test.co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => NULL,\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:51:01.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:51:46[debug]: [6/Test666] 변경 후 내용\n09:51:46[debug]: array (\n 'uid' => '6',\n 'role' => 'user,reseller',\n 'name' => 'Test666',\n 'phone' => '234234',\n 'email' => 'test666@test.co.kr',\n 'account_balance' => 10000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:51:46.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:51:01.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:51:46[info]: [Test666]수정되였습니다.:\n09:51:46[debug]: 입력내용\n09:51:46[debug]: array (\n 'clientinfo_uid' => '6',\n 'status' => 'default',\n 'alias' => 'Test666',\n 'title' => 'test1',\n 'amount' => '10000',\n)\n09:51:46[debug]: [8/test1] 입력 후 내용\n09:51:46[debug]: array (\n 'clientinfo_uid' => '6',\n 'status' => 'default',\n 'alias' => 'Test666',\n 'title' => 'test1',\n 'amount' => '10000',\n 'uid' => 8,\n)\n09:51:46[info]: [test1]생성되었습니다.:','default',NULL,'2025-06-20 00:51:46',NULL),(88,1,'Customer/Account','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:51:59[debug]: [6/Test666] 변경 전 내용\n09:51:59[debug]: array (\n 'account_balance' => 30000,\n)\n09:51:59[debug]: array (\n 'uid' => '6',\n 'role' => 'user,reseller',\n 'name' => 'Test666',\n 'phone' => '234234',\n 'email' => 'test666@test.co.kr',\n 'account_balance' => 10000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:51:46.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:51:01.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:51:59[debug]: [6/Test666] 변경 후 내용\n09:51:59[debug]: array (\n 'uid' => '6',\n 'role' => 'user,reseller',\n 'name' => 'Test666',\n 'phone' => '234234',\n 'email' => 'test666@test.co.kr',\n 'account_balance' => 30000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:51:59.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:51:01.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:51:59[info]: [Test666]수정되였습니다.:\n09:51:59[debug]: 입력내용\n09:51:59[debug]: array (\n 'clientinfo_uid' => '6',\n 'status' => 'default',\n 'alias' => 'Test666',\n 'title' => 'test2',\n 'amount' => '20000',\n)\n09:51:59[debug]: [9/test2] 입력 후 내용\n09:51:59[debug]: array (\n 'clientinfo_uid' => '6',\n 'status' => 'default',\n 'alias' => 'Test666',\n 'title' => 'test2',\n 'amount' => '20000',\n 'uid' => 9,\n)\n09:51:59[info]: [test2]생성되었습니다.:','default',NULL,'2025-06-20 00:51:59',NULL),(89,1,'Customer/Account','getResultFail','예치금[30000]이 출금액:60000보다 부족합니다.','09:52:20[debug]: 예치금[30000]이 출금액:60000보다 부족합니다.','default',NULL,'2025-06-20 00:52:20',NULL),(90,1,'Customer/Account','getResultFail','Undefined array key \"status\"','09:52:20[debug]: Undefined array key "status"','default',NULL,'2025-06-20 00:52:20',NULL),(91,1,'Customer/Account','getResultFail','예치금[30000]이 출금액:100000000보다 부족합니다.','09:54:12[debug]: 예치금[30000]이 출금액:100000000보다 부족합니다.','default',NULL,'2025-06-20 00:54:12',NULL),(92,1,'Customer/Account','getResultFail','Undefined array key \"status\"','09:54:12[debug]: Undefined array key "status"','default',NULL,'2025-06-20 00:54:12',NULL),(93,1,'Customer/Account','getResultFail','예치금[30000]이 출금액:1000000보다 부족합니다.','09:55:20[debug]: 예치금[30000]이 출금액:1000000보다 부족합니다.','default',NULL,'2025-06-20 00:55:20',NULL),(94,1,'Customer/Account','getResultFail','Undefined array key \"status\"','09:55:20[debug]: Undefined array key "status"','default',NULL,'2025-06-20 00:55:20',NULL),(95,1,'Customer/Account','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:00:36[debug]: [6/Test666] 변경 전 내용\n10:00:36[debug]: array (\n 'account_balance' => 10030000,\n)\n10:00:36[debug]: array (\n 'uid' => '6',\n 'role' => 'user,reseller',\n 'name' => 'Test666',\n 'phone' => '234234',\n 'email' => 'test666@test.co.kr',\n 'account_balance' => 30000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:51:59.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:51:01.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:00:36[debug]: [6/Test666] 변경 후 내용\n10:00:36[debug]: array (\n 'uid' => '6',\n 'role' => 'user,reseller',\n 'name' => 'Test666',\n 'phone' => '234234',\n 'email' => 'test666@test.co.kr',\n 'account_balance' => 10030000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 10:00:36.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:51:01.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:00:36[info]: [Test666]수정되였습니다.:\n10:00:36[debug]: 입력내용\n10:00:36[debug]: array (\n 'clientinfo_uid' => '6',\n 'status' => 'default',\n 'alias' => 'Test6666',\n 'title' => 'test3',\n 'amount' => '10000000',\n)\n10:00:36[debug]: [10/test3] 입력 후 내용\n10:00:36[debug]: array (\n 'clientinfo_uid' => '6',\n 'status' => 'default',\n 'alias' => 'Test6666',\n 'title' => 'test3',\n 'amount' => '10000000',\n 'uid' => 10,\n)\n10:00:36[info]: [test3]생성되었습니다.:','default',NULL,'2025-06-20 01:00:36',NULL),(96,1,'Customer/Account','getResultFail','예치금[10030000]이 출금액:100000000000000보다 부족합니다.','10:00:59[debug]: 예치금[10030000]이 출금액:100000000000000보다 부족합니다.','default',NULL,'2025-06-20 01:00:59',NULL),(97,1,'Customer/Account','getResultFail','Undefined array key \"status\"','10:00:59[debug]: Undefined array key "status"','default',NULL,'2025-06-20 01:00:59',NULL),(98,1,'Customer/Service','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:03:04[debug]: [JPN150/JPN150] 변경 전 내용\n10:03:04[debug]: array (\n 'status' => 'occupied',\n)\n10:03:04[debug]: array (\n 'code' => 'JPN150',\n 'status' => 'default',\n 'updated_at' => NULL,\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-10 12:53:05.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:03:04[debug]: [JPN150/JPN150] 변경 후 내용\n10:03:04[debug]: array (\n 'code' => 'JPN150',\n 'status' => 'occupied',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 10:03:04.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-10 12:53:05.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:03:04[debug]: 입력내용\n10:03:04[debug]: array (\n 'clientinfo_uid' => '5',\n 'ownerinfo_uid' => '5',\n 'type' => 'alternative',\n 'location' => 'default',\n 'switch' => 'R45P20',\n 'code' => 'JPN150',\n 'raid' => 'RAID1',\n 'billing_at' => '2025-06-21',\n 'start_at' => '2025-06-19',\n 'status' => 'default',\n)\n10:03:04[debug]: [4/S4] 입력 후 내용\n10:03:04[debug]: array (\n 'clientinfo_uid' => '5',\n 'ownerinfo_uid' => '5',\n 'type' => 'alternative',\n 'location' => 'default',\n 'switch' => 'R45P20',\n 'code' => 'JPN150',\n 'raid' => 'RAID1',\n 'billing_at' => '2025-06-21',\n 'start_at' => '2025-06-19',\n 'status' => 'default',\n 'uid' => 4,\n)\n10:03:04[info]: [S4]생성되었습니다.:','default',NULL,'2025-06-20 01:03:04',NULL),(99,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','10:03:42[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-20 01:03:42',NULL),(100,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','10:03:42[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-20 01:03:42',NULL),(101,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:04:21[debug]: 입력내용\n10:04:21[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'IP',\n 'item_uid' => '19',\n 'billing_cycle' => 'month',\n 'price' => '100000',\n 'amount' => '50000',\n 'start_at' => '2025-06-19',\n 'status' => 'default',\n)\n10:04:21[debug]: [69/IP] 입력 후 내용\n10:04:21[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'IP',\n 'item_uid' => 19,\n 'billing_cycle' => 'month',\n 'price' => 100000,\n 'amount' => 50000,\n 'start_at' => '2025-06-19',\n 'status' => 'default',\n 'uid' => 69,\n)\n10:04:21[info]: [IP]생성되었습니다.:\n10:04:21[debug]: 입력내용\n10:04:21[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'IP',\n 'item_uid' => 19,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n)\n10:04:21[debug]: [70/IP] 입력 후 내용\n10:04:21[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'IP',\n 'item_uid' => 19,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n 'uid' => 70,\n)\n10:04:21[info]: [IP]생성되었습니다.:','default',NULL,'2025-06-20 01:04:21',NULL),(102,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:07:25[debug]: 입력내용\n10:07:25[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'IP',\n 'item_uid' => '3',\n 'billing_cycle' => 'onetime',\n 'price' => '100000',\n 'amount' => '50000',\n 'start_at' => '2025-06-20',\n 'status' => 'default',\n)\n10:07:25[debug]: [70/IP] 입력 후 내용\n10:07:25[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'IP',\n 'item_uid' => 3,\n 'billing_cycle' => 'onetime',\n 'price' => 100000,\n 'amount' => 50000,\n 'start_at' => '2025-06-20',\n 'status' => 'default',\n 'uid' => 70,\n)\n10:07:25[info]: [IP]생성되었습니다.:\n10:07:25[debug]: 입력내용\n10:07:25[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'IP',\n 'item_uid' => 3,\n 'billing_cycle' => 'onetime',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n)\n10:07:25[debug]: [71/IP] 입력 후 내용\n10:07:25[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'IP',\n 'item_uid' => 3,\n 'billing_cycle' => 'onetime',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n 'uid' => 71,\n)\n10:07:25[info]: [IP]생성되었습니다.:','default',NULL,'2025-06-20 01:07:25',NULL),(103,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','10:10:03[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-20 01:10:03',NULL),(104,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','10:10:03[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-20 01:10:03',NULL),(105,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','10:10:34[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-20 01:10:34',NULL),(106,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','10:10:34[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-20 01:10:34',NULL),(107,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','10:10:51[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-20 01:10:51',NULL),(108,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','10:10:51[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-20 01:10:51',NULL),(109,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','10:11:10[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-20 01:11:10',NULL),(110,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','10:11:10[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-20 01:11:10',NULL),(111,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','10:11:35[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-20 01:11:35',NULL),(112,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','10:11:35[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-20 01:11:35',NULL),(113,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','10:12:23[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-20 01:12:23',NULL),(114,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','10:12:23[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-20 01:12:23',NULL),(115,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:12:47[debug]: 입력내용\n10:12:47[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'STORAGE',\n 'item_uid' => '1',\n 'billing_cycle' => 'onetime',\n 'price' => '100000',\n 'amount' => '50000',\n 'start_at' => '2025-06-20',\n 'status' => 'default',\n)\n10:12:47[debug]: [71/STORAGE] 입력 후 내용\n10:12:47[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'price' => 100000,\n 'amount' => 50000,\n 'start_at' => '2025-06-20',\n 'status' => 'default',\n 'uid' => 71,\n)\n10:12:47[info]: [STORAGE]생성되었습니다.:\n10:12:47[debug]: 입력내용\n10:12:47[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n)\n10:12:48[debug]: [72/STORAGE] 입력 후 내용\n10:12:48[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n 'uid' => 72,\n)\n10:12:48[info]: [STORAGE]생성되었습니다.:','default',NULL,'2025-06-20 01:12:48',NULL),(116,1,'Customer/Account','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:21:03[debug]: [6/Test666] 변경 전 내용\n10:21:03[debug]: array (\n 'account_balance' => 9930000,\n)\n10:21:03[debug]: array (\n 'uid' => '6',\n 'role' => 'user,reseller',\n 'name' => 'Test666',\n 'phone' => '234234',\n 'email' => 'test666@test.co.kr',\n 'account_balance' => 10030000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 10:01:54.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:51:01.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:21:03[debug]: [6/Test666] 변경 후 내용\n10:21:03[debug]: array (\n 'uid' => '6',\n 'role' => 'user,reseller',\n 'name' => 'Test666',\n 'phone' => '234234',\n 'email' => 'test666@test.co.kr',\n 'account_balance' => 9930000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 10:21:03.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 09:51:01.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:21:03[info]: [Test666]수정되였습니다.:\n10:21:03[debug]: 입력내용\n10:21:03[debug]: array (\n 'clientinfo_uid' => '6',\n 'status' => 'out',\n 'alias' => 'test6666',\n 'title' => 'test4',\n 'amount' => '100000',\n)\n10:21:03[debug]: [11/test4] 입력 후 내용\n10:21:03[debug]: array (\n 'clientinfo_uid' => '6',\n 'status' => 'out',\n 'alias' => 'test6666',\n 'title' => 'test4',\n 'amount' => '100000',\n 'uid' => 11,\n)\n10:21:03[info]: [test4]생성되었습니다.:','default',NULL,'2025-06-20 01:21:03',NULL),(117,1,'Customer/Account','getResultFail','예치금[9930000]이 출금액:9223372036854775807보다 부족합니다.','10:21:37[debug]: 예치금[9930000]이 출금액:9223372036854775807보다 부족합니다.','default',NULL,'2025-06-20 01:21:37',NULL),(118,1,'Customer/Account','getResultFail','예치금[9930000]이 출금액:1000000000000000000보다 부족합니다.','10:22:31[debug]: 예치금[9930000]이 출금액:1000000000000000000보다 부족합니다.','default',NULL,'2025-06-20 01:22:31',NULL),(119,1,'Customer/Account','getResultFail','Undefined array key \"status\"','10:22:31[debug]: Undefined array key "status"','default',NULL,'2025-06-20 01:22:31',NULL),(120,1,'Customer/Account','getResultFail','예치금[9930000]이 출금액:1000000000000000000보다 부족합니다.','11:02:00[debug]: 예치금[9930000]이 출금액:1000000000000000000보다 부족합니다.','default',NULL,'2025-06-20 02:02:00',NULL),(121,1,'Customer/Account','getResultFail','예치금[9930000]이 출금액:10000000000000보다 부족합니다.','11:02:51[debug]: 예치금[9930000]이 출금액:10000000000000보다 부족합니다.','default',NULL,'2025-06-20 02:02:51',NULL),(122,1,'Customer/Account','getResultFail','예치금[9930000]이 출금액:10000000000000000보다 부족합니다.','11:04:40[debug]: 예치금[9930000]이 출금액:10000000000000000보다 부족합니다.','default',NULL,'2025-06-20 02:04:40',NULL),(123,1,'Customer/Account','getResultFail','예치금[9930000]이 출금액:100000000000보다 부족합니다.','11:05:22[debug]: 예치금[9930000]이 출금액:100000000000보다 부족합니다.','default',NULL,'2025-06-20 02:05:22',NULL),(124,1,'Customer/Account','getResultFail','Undefined array key \"status\"','11:05:22[debug]: Undefined array key "status"','default',NULL,'2025-06-20 02:05:22',NULL),(125,1,'Customer/Account','getResultFail','예치금[9930000]이 출금액:1000000000000000보다 부족합니다.','11:06:38[debug]: 예치금[9930000]이 출금액:1000000000000000보다 부족합니다.','default',NULL,'2025-06-20 02:06:38',NULL),(126,1,'Customer/Account','getResultFail','Undefined array key \"status\"','11:06:38[debug]: Undefined array key "status"','default',NULL,'2025-06-20 02:06:38',NULL),(127,1,'Customer/Client','getResultFail','Customer/Client 작업 데이터 검증 오류발생\nThe role field is required.','11:07:26[debug]: Customer/Client 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-06-20 02:07:26',NULL),(128,1,'Customer/Client','getResultFail','Undefined array key \"name\"','11:07:26[debug]: Undefined array key "name"','default',NULL,'2025-06-20 02:07:26',NULL),(129,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe id field must contain a unique value.','11:12:21[debug]: User 작업 데이터 검증 오류발생\nThe id field must contain a unique value.','default',NULL,'2025-06-20 02:12:21',NULL),(130,1,'User','getResultFail','Undefined array key \"id\"','11:12:21[debug]: Undefined array key "id"','default',NULL,'2025-06-20 02:12:21',NULL),(131,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe id field must contain a unique value.','11:16:43[debug]: User 작업 데이터 검증 오류발생\nThe id field must contain a unique value.','default',NULL,'2025-06-20 02:16:43',NULL),(132,1,'User','getResultFail','Undefined array key \"id\"','11:16:43[debug]: Undefined array key "id"','default',NULL,'2025-06-20 02:16:43',NULL),(133,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe id field must contain a unique value.','11:30:13[debug]: User 작업 데이터 검증 오류발생\nThe id field must contain a unique value.','default',NULL,'2025-06-20 02:30:13',NULL),(134,1,'Customer/Account','getResultFail','예치금[9930000]이 출금액:100000000000000000보다 부족합니다.','11:31:15[debug]: 예치금[9930000]이 출금액:100000000000000000보다 부족합니다.','default',NULL,'2025-06-20 02:31:15',NULL),(135,1,'Customer/ServicePayment','getResultFail','Undefined array key \"STORAGE\"','11:34:54[debug]: Undefined array key "STORAGE"','default',NULL,'2025-06-20 02:34:54',NULL),(136,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:57:01[debug]: 입력내용\n11:57:01[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'STORAGE',\n 'item_uid' => '2',\n 'billing_cycle' => 'onetime',\n 'price' => '100000',\n 'amount' => '50000',\n 'start_at' => '2025-06-20',\n 'status' => 'default',\n)\n11:57:01[debug]: [72/STORAGE] 입력 후 내용\n11:57:01[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'STORAGE',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'price' => 100000,\n 'amount' => 50000,\n 'start_at' => '2025-06-20',\n 'status' => 'default',\n 'uid' => 72,\n)\n11:57:01[info]: [STORAGE]생성되었습니다.:\n11:57:01[debug]: 입력내용\n11:57:01[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'STORAGE',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n)\n11:57:01[debug]: [73/STORAGE] 입력 후 내용\n11:57:01[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'STORAGE',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n 'uid' => 73,\n)\n11:57:01[info]: [STORAGE]생성되었습니다.:','default',NULL,'2025-06-20 02:57:01',NULL),(137,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','12:11:36[debug]: 입력내용\n12:11:36[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'RAM',\n 'item_uid' => '2',\n 'billing_cycle' => 'month',\n 'price' => '10000',\n 'amount' => '5000',\n 'start_at' => '2025-06-19',\n 'status' => 'default',\n)\n12:11:36[debug]: [73/RAM] 입력 후 내용\n12:11:36[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'price' => 10000,\n 'amount' => 5000,\n 'start_at' => '2025-06-19',\n 'status' => 'default',\n 'uid' => 73,\n)\n12:11:36[info]: [RAM]생성되었습니다.:\n12:11:36[debug]: 입력내용\n12:11:36[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 5000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n)\n12:11:36[debug]: [74/RAM] 입력 후 내용\n12:11:36[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 5000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n 'uid' => 74,\n)\n12:11:36[info]: [RAM]생성되었습니다.:','default',NULL,'2025-06-20 03:11:36',NULL),(138,1,'Customer/Service','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:45:04[debug]: [XP250/XP250] 변경 전 내용\n13:45:04[debug]: array (\n 'status' => 'occupied',\n)\n13:45:04[debug]: array (\n 'code' => 'XP250',\n 'status' => 'default',\n 'updated_at' => NULL,\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-10 12:53:40.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n13:45:04[debug]: [XP250/XP250] 변경 후 내용\n13:45:04[debug]: array (\n 'code' => 'XP250',\n 'status' => 'occupied',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-20 13:45:04.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-10 12:53:40.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n13:45:04[debug]: 입력내용\n13:45:04[debug]: array (\n 'clientinfo_uid' => '6',\n 'ownerinfo_uid' => '6',\n 'type' => 'test',\n 'location' => 'tokyo',\n 'switch' => 'R45P20',\n 'code' => 'XP250',\n 'raid' => 'RAID5',\n 'billing_at' => '2025-06-25',\n 'start_at' => '2025-06-11',\n 'status' => 'default',\n)\n13:45:04[debug]: [5/S5] 입력 후 내용\n13:45:04[debug]: array (\n 'clientinfo_uid' => '6',\n 'ownerinfo_uid' => '6',\n 'type' => 'test',\n 'location' => 'tokyo',\n 'switch' => 'R45P20',\n 'code' => 'XP250',\n 'raid' => 'RAID5',\n 'billing_at' => '2025-06-25',\n 'start_at' => '2025-06-11',\n 'status' => 'default',\n 'uid' => 5,\n)\n13:45:04[info]: [S5]생성되었습니다.:','default',NULL,'2025-06-20 04:45:04',NULL),(139,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:45:38[debug]: 입력내용\n13:45:38[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'IP',\n 'item_uid' => '12',\n 'billing_cycle' => 'month',\n 'price' => '50000',\n 'amount' => '40000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:45:38[debug]: [74/IP] 입력 후 내용\n13:45:38[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'IP',\n 'item_uid' => 12,\n 'billing_cycle' => 'month',\n 'price' => 50000,\n 'amount' => 40000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 74,\n)\n13:45:38[info]: [IP]생성되었습니다.:\n13:45:38[debug]: 입력내용\n13:45:38[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'IP',\n 'item_uid' => 12,\n 'billing_cycle' => 'month',\n 'amount' => 40000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:45:38[debug]: [75/IP] 입력 후 내용\n13:45:38[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'IP',\n 'item_uid' => 12,\n 'billing_cycle' => 'month',\n 'amount' => 40000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 75,\n)\n13:45:38[info]: [IP]생성되었습니다.:','default',NULL,'2025-06-20 04:45:38',NULL),(140,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:46:07[debug]: 입력내용\n13:46:07[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'LINE',\n 'item_uid' => '8',\n 'billing_cycle' => 'month',\n 'price' => '100000',\n 'amount' => '100000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:46:07[debug]: [75/LINE] 입력 후 내용\n13:46:07[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'LINE',\n 'item_uid' => 8,\n 'billing_cycle' => 'month',\n 'price' => 100000,\n 'amount' => 100000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 75,\n)\n13:46:07[info]: [LINE]생성되었습니다.:\n13:46:07[debug]: 입력내용\n13:46:07[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'LINE',\n 'item_uid' => 8,\n 'billing_cycle' => 'month',\n 'amount' => 100000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:46:07[debug]: [76/LINE] 입력 후 내용\n13:46:07[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'LINE',\n 'item_uid' => 8,\n 'billing_cycle' => 'month',\n 'amount' => 100000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 76,\n)\n13:46:07[info]: [LINE]생성되었습니다.:','default',NULL,'2025-06-20 04:46:07',NULL),(141,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:46:35[debug]: 입력내용\n13:46:35[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'SERVER',\n 'item_uid' => '5',\n 'billing_cycle' => 'month',\n 'price' => '200000',\n 'amount' => '150000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:46:35[debug]: [76/SERVER] 입력 후 내용\n13:46:35[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'SERVER',\n 'item_uid' => 5,\n 'billing_cycle' => 'month',\n 'price' => 200000,\n 'amount' => 150000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 76,\n)\n13:46:35[info]: [SERVER]생성되었습니다.:\n13:46:35[debug]: 입력내용\n13:46:35[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'SERVER',\n 'item_uid' => 5,\n 'billing_cycle' => 'month',\n 'amount' => 150000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:46:35[debug]: [77/SERVER] 입력 후 내용\n13:46:35[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'SERVER',\n 'item_uid' => 5,\n 'billing_cycle' => 'month',\n 'amount' => 150000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 77,\n)\n13:46:35[info]: [SERVER]생성되었습니다.:','default',NULL,'2025-06-20 04:46:35',NULL),(142,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:47:01[debug]: 입력내용\n13:47:01[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'CPU',\n 'item_uid' => '2',\n 'billing_cycle' => 'month',\n 'price' => '50000',\n 'amount' => '50000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:47:01[debug]: [77/CPU] 입력 후 내용\n13:47:01[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'CPU',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'price' => 50000,\n 'amount' => 50000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 77,\n)\n13:47:01[info]: [CPU]생성되었습니다.:\n13:47:01[debug]: 입력내용\n13:47:01[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'CPU',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:47:01[debug]: [78/CPU] 입력 후 내용\n13:47:01[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'CPU',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 78,\n)\n13:47:01[info]: [CPU]생성되었습니다.:','default',NULL,'2025-06-20 04:47:01',NULL),(143,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:47:20[debug]: 입력내용\n13:47:20[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'CPU',\n 'item_uid' => '2',\n 'billing_cycle' => 'month',\n 'price' => '50000',\n 'amount' => '50000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:47:20[debug]: [78/CPU] 입력 후 내용\n13:47:20[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'CPU',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'price' => 50000,\n 'amount' => 50000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 78,\n)\n13:47:20[info]: [CPU]생성되었습니다.:\n13:47:20[debug]: 입력내용\n13:47:20[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'CPU',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:47:20[debug]: [79/CPU] 입력 후 내용\n13:47:20[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'CPU',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 79,\n)\n13:47:20[info]: [CPU]생성되었습니다.:','default',NULL,'2025-06-20 04:47:20',NULL),(144,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:47:47[debug]: 입력내용\n13:47:47[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => '2',\n 'billing_cycle' => 'month',\n 'price' => '50000',\n 'amount' => '50000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:47:47[debug]: [79/RAM] 입력 후 내용\n13:47:47[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'price' => 50000,\n 'amount' => 50000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 79,\n)\n13:47:47[info]: [RAM]생성되었습니다.:\n13:47:47[debug]: 입력내용\n13:47:47[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:47:47[debug]: [80/RAM] 입력 후 내용\n13:47:47[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 80,\n)\n13:47:47[info]: [RAM]생성되었습니다.:','default',NULL,'2025-06-20 04:47:47',NULL),(145,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:48:09[debug]: 입력내용\n13:48:09[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => '2',\n 'billing_cycle' => 'month',\n 'price' => '50000',\n 'amount' => '50000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:48:09[debug]: [80/RAM] 입력 후 내용\n13:48:09[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'price' => 50000,\n 'amount' => 50000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 80,\n)\n13:48:09[info]: [RAM]생성되었습니다.:\n13:48:09[debug]: 입력내용\n13:48:09[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:48:09[debug]: [81/RAM] 입력 후 내용\n13:48:09[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 81,\n)\n13:48:09[info]: [RAM]생성되었습니다.:','default',NULL,'2025-06-20 04:48:09',NULL),(146,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:48:37[debug]: 입력내용\n13:48:37[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'STORAGE',\n 'item_uid' => '1',\n 'billing_cycle' => 'month',\n 'price' => '100000',\n 'amount' => '100000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:48:37[debug]: [81/STORAGE] 입력 후 내용\n13:48:37[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'month',\n 'price' => 100000,\n 'amount' => 100000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 81,\n)\n13:48:37[info]: [STORAGE]생성되었습니다.:\n13:48:37[debug]: 입력내용\n13:48:37[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'month',\n 'amount' => 100000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:48:37[debug]: [82/STORAGE] 입력 후 내용\n13:48:37[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'month',\n 'amount' => 100000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 82,\n)\n13:48:37[info]: [STORAGE]생성되었습니다.:','default',NULL,'2025-06-20 04:48:37',NULL),(147,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:49:13[debug]: 입력내용\n13:49:13[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'SOFTWARE',\n 'item_uid' => '3',\n 'billing_cycle' => 'onetime',\n 'price' => '10000',\n 'amount' => '10000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:49:13[debug]: [82/SOFTWARE] 입력 후 내용\n13:49:13[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'SOFTWARE',\n 'item_uid' => 3,\n 'billing_cycle' => 'onetime',\n 'price' => 10000,\n 'amount' => 10000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 82,\n)\n13:49:13[info]: [SOFTWARE]생성되었습니다.:\n13:49:13[debug]: 입력내용\n13:49:13[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'SOFTWARE',\n 'item_uid' => 3,\n 'billing_cycle' => 'onetime',\n 'amount' => 10000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:49:13[debug]: [83/SOFTWARE] 입력 후 내용\n13:49:13[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'SOFTWARE',\n 'item_uid' => 3,\n 'billing_cycle' => 'onetime',\n 'amount' => 10000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 83,\n)\n13:49:13[info]: [SOFTWARE]생성되었습니다.:','default',NULL,'2025-06-20 04:49:13',NULL),(148,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:00:31[debug]: 입력내용\n11:00:31[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'DEFENCE',\n 'item_uid' => '2',\n 'billing_cycle' => 'month',\n 'price' => '200000',\n 'amount' => '200000',\n 'start_at' => '2025-06-20',\n 'status' => 'default',\n)\n11:00:31[debug]: [83/DEFENCE] 입력 후 내용\n11:00:31[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'DEFENCE',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'price' => 200000,\n 'amount' => 200000,\n 'start_at' => '2025-06-20',\n 'status' => 'default',\n 'uid' => 83,\n)\n11:00:31[info]: [DEFENCE]생성되었습니다.:\n11:00:31[debug]: 입력내용\n11:00:31[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'DEFENCE',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 200000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-23',\n)\n11:00:31[debug]: [84/DEFENCE] 입력 후 내용\n11:00:31[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'DEFENCE',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 200000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-23',\n 'uid' => 84,\n)\n11:00:31[info]: [DEFENCE]생성되었습니다.:','default',NULL,'2025-06-23 02:00:31',NULL),(149,1,'Customer/Service','getResultFail','Undefined variable $entity','12:20:13[debug]: Undefined variable $entity','default',NULL,'2025-06-23 03:20:13',NULL),(150,1,'Customer/Service','getResultFail','Undefined variable $cnt','12:40:57[debug]: Undefined variable $cnt','default',NULL,'2025-06-23 03:40:57',NULL),(151,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:28:36[debug]: 입력내용\n13:28:36[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'LINE',\n 'item_uid' => '8',\n 'billing_cycle' => 'month',\n 'price' => '100000',\n 'amount' => '50000',\n 'start_at' => '2025-06-16',\n 'status' => 'default',\n)\n13:28:36[debug]: [84/LINE] 입력 후 내용\n13:28:36[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'LINE',\n 'item_uid' => 8,\n 'billing_cycle' => 'month',\n 'price' => 100000,\n 'amount' => 50000,\n 'start_at' => '2025-06-16',\n 'status' => 'default',\n 'uid' => 84,\n)\n13:28:36[info]: [LINE]생성되었습니다.:\n13:28:36[debug]: 입력내용\n13:28:36[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'LINE',\n 'item_uid' => 8,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-23',\n)\n13:28:36[debug]: [85/LINE] 입력 후 내용\n13:28:36[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'LINE',\n 'item_uid' => 8,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-23',\n 'uid' => 85,\n)\n13:28:36[info]: [LINE]생성되었습니다.:','default',NULL,'2025-06-23 04:28:36',NULL),(152,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:31:18[debug]: 입력내용\n13:31:18[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'STORAGE',\n 'item_uid' => '2',\n 'billing_cycle' => 'onetime',\n 'price' => '100000',\n 'amount' => '100000',\n 'start_at' => '2025-06-17',\n 'status' => 'default',\n)\n13:31:18[debug]: [85/STORAGE] 입력 후 내용\n13:31:18[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'STORAGE',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'price' => 100000,\n 'amount' => 100000,\n 'start_at' => '2025-06-17',\n 'status' => 'default',\n 'uid' => 85,\n)\n13:31:18[info]: [STORAGE]생성되었습니다.:\n13:31:18[debug]: 입력내용\n13:31:18[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'STORAGE',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 100000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-23',\n)\n13:31:18[debug]: [86/STORAGE] 입력 후 내용\n13:31:18[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'STORAGE',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 100000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-23',\n 'uid' => 86,\n)\n13:31:18[info]: [STORAGE]생성되었습니다.:','default',NULL,'2025-06-23 04:31:18',NULL),(153,1,'Customer/Client','getResultSuccess','작업이 성공적으로 완료되었습니다.','16:42:00[debug]: 입력내용\n16:42:00[debug]: array (\n 'name' => 'Test777',\n 'email' => 'test777@test.co.kr',\n 'phone' => '234-234-342',\n 'role' => 'user,vip',\n)\n16:42:00[debug]: [7/Test777] 입력 후 내용\n16:42:00[debug]: array (\n 'name' => 'Test777',\n 'email' => 'test777@test.co.kr',\n 'phone' => '234-234-342',\n 'role' => 'user,vip',\n 'uid' => 7,\n)\n16:42:00[info]: [Test777]생성되었습니다.:','default',NULL,'2025-06-23 07:42:00',NULL),(154,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:09:38[debug]: [6/김은혁] 변경 전 내용\n10:09:38[debug]: array (\n 'id' => 'kim.eh',\n 'name' => '김은혁',\n 'email' => 'kim.eh@prime-idc.jp',\n 'mobile' => '',\n 'role' => 'manager,cloudflare,security',\n)\n10:09:38[debug]: array (\n 'uid' => '6',\n 'id' => 'kim.eh',\n 'passwd' => '$2y$10$YmwicI.Br4XNyGamfRADMOu.qlkwKd2fmnNkL7YIkNHGndvqYPnCq',\n 'name' => '김은혁',\n 'email' => 'kim.eh@prime-idc.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2023-03-24 11:23:52.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2023-03-24 11:23:52.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:09:38[debug]: [6/김은혁] 변경 후 내용\n10:09:38[debug]: array (\n 'uid' => '6',\n 'id' => 'kim.eh',\n 'passwd' => '$2y$10$YmwicI.Br4XNyGamfRADMOu.qlkwKd2fmnNkL7YIkNHGndvqYPnCq',\n 'name' => '김은혁',\n 'email' => 'kim.eh@prime-idc.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare,security',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-24 10:09:38.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2023-03-24 11:23:52.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:09:38[info]: [김은혁]수정되였습니다.:','default',NULL,'2025-06-24 01:09:38',NULL),(155,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:09:47[debug]: [8/김명옥] 변경 전 내용\n10:09:47[debug]: array (\n 'id' => 'jinmingyu',\n 'name' => '김명옥',\n 'email' => 'jinmingyu@idcjp.jp',\n 'mobile' => '',\n 'role' => 'manager,cloudflare,security',\n)\n10:09:47[debug]: array (\n 'uid' => '8',\n 'id' => 'jinmingyu',\n 'passwd' => '$2y$10$PI8WA6d/z4hDE6hxJoUhbuMH3vTTWH0Ry2Z6fTLUUpwQGaE/9bEZa',\n 'name' => '김명옥',\n 'email' => 'jinmingyu@idcjp.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2023-07-21 15:48:39.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2023-03-24 11:25:00.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:09:47[debug]: [8/김명옥] 변경 후 내용\n10:09:47[debug]: array (\n 'uid' => '8',\n 'id' => 'jinmingyu',\n 'passwd' => '$2y$10$PI8WA6d/z4hDE6hxJoUhbuMH3vTTWH0Ry2Z6fTLUUpwQGaE/9bEZa',\n 'name' => '김명옥',\n 'email' => 'jinmingyu@idcjp.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare,security',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-24 10:09:47.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2023-03-24 11:25:00.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:09:47[info]: [김명옥]수정되였습니다.:','default',NULL,'2025-06-24 01:09:47',NULL),(156,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:10:02[debug]: [24/고병남] 변경 전 내용\n10:10:02[debug]: array (\n 'id' => 'kobn',\n 'name' => '고병남',\n 'email' => 'ko@prime-idc.jp',\n 'mobile' => '',\n 'role' => 'manager,cloudflare,security',\n)\n10:10:02[debug]: array (\n 'uid' => '24',\n 'id' => 'kobn',\n 'passwd' => '$2y$10$pWM/XFfSNeSng32sypbDX.WaR4UlM4EDkYKCQfFkYIOC7Ppg0nc5G',\n 'name' => '고병남',\n 'email' => 'ko@prime-idc.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare',\n 'status' => 'default',\n 'updated_at' => NULL,\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2024-10-29 15:30:19.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:10:02[debug]: [24/고병남] 변경 후 내용\n10:10:02[debug]: array (\n 'uid' => '24',\n 'id' => 'kobn',\n 'passwd' => '$2y$10$pWM/XFfSNeSng32sypbDX.WaR4UlM4EDkYKCQfFkYIOC7Ppg0nc5G',\n 'name' => '고병남',\n 'email' => 'ko@prime-idc.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare,security',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-24 10:10:02.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2024-10-29 15:30:19.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:10:02[info]: [고병남]수정되였습니다.:','default',NULL,'2025-06-24 01:10:02',NULL),(157,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:10:17[debug]: [4/김동윤] 변경 전 내용\n10:10:17[debug]: array (\n 'id' => 'kimdy',\n 'name' => '김동윤',\n 'email' => 'kimdy@prime-idc.jp',\n 'mobile' => '',\n 'role' => 'manager,cloudflare,security',\n)\n10:10:17[debug]: array (\n 'uid' => '4',\n 'id' => 'kimdy',\n 'passwd' => '$2y$10$18uyn94xdprzAnt.oYZ5weAvb8rRLhkz/SdQrjEK7yuGhCr9PlUCC',\n 'name' => '김동윤',\n 'email' => 'kimdy@prime-idc.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2023-03-24 11:21:50.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2023-03-24 11:21:50.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:10:17[debug]: [4/김동윤] 변경 후 내용\n10:10:17[debug]: array (\n 'uid' => '4',\n 'id' => 'kimdy',\n 'passwd' => '$2y$10$18uyn94xdprzAnt.oYZ5weAvb8rRLhkz/SdQrjEK7yuGhCr9PlUCC',\n 'name' => '김동윤',\n 'email' => 'kimdy@prime-idc.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare,security',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-24 10:10:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2023-03-24 11:21:50.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:10:17[info]: [김동윤]수정되였습니다.:','default',NULL,'2025-06-24 01:10:17',NULL),(158,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:11:41[debug]: [5/김효영] 변경 전 내용\n10:11:41[debug]: array (\n 'id' => 'kimhy',\n 'name' => '김효영',\n 'email' => 'khy@prime-idc.jp',\n 'mobile' => '',\n 'role' => 'manager,security,director',\n)\n10:11:41[debug]: array (\n 'uid' => '5',\n 'id' => 'kimhy',\n 'passwd' => '$2y$10$.yEKVqY.F7HoSOZijl4uyeulUtfAQ4EDRiyR2JpgFYBuKw.mZoZvG',\n 'name' => '김효영',\n 'email' => 'khy@prime-idc.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare,director',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2023-03-24 11:23:18.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2023-03-24 11:23:18.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:11:41[debug]: [5/김효영] 변경 후 내용\n10:11:41[debug]: array (\n 'uid' => '5',\n 'id' => 'kimhy',\n 'passwd' => '$2y$10$.yEKVqY.F7HoSOZijl4uyeulUtfAQ4EDRiyR2JpgFYBuKw.mZoZvG',\n 'name' => '김효영',\n 'email' => 'khy@prime-idc.jp',\n 'mobile' => NULL,\n 'role' => 'manager,security,director',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-24 10:11:41.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2023-03-24 11:23:18.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:11:41[info]: [김효영]수정되였습니다.:','default',NULL,'2025-06-24 01:11:41',NULL),(159,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:20:09[debug]: 입력내용\n13:20:09[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => '2',\n 'billing_cycle' => 'onetime',\n 'price' => '0',\n 'amount' => '10000',\n 'start_at' => '2025-06-24',\n 'status' => 'default',\n)\n13:20:09[debug]: [86/RAM] 입력 후 내용\n13:20:09[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'price' => 0,\n 'amount' => 10000,\n 'start_at' => '2025-06-24',\n 'status' => 'default',\n 'uid' => 86,\n)\n13:20:09[info]: [RAM]생성되었습니다.:\n13:20:09[debug]: 입력내용\n13:20:09[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 10000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-25',\n 'status' => 'default',\n)\n13:20:09[debug]: [87/RAM] 입력 후 내용\n13:20:09[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 10000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-25',\n 'status' => 'default',\n 'uid' => 87,\n)\n13:20:09[info]: [RAM]생성되었습니다.:','default',NULL,'2025-06-25 04:20:09',NULL),(160,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:22:33[debug]: 입력내용\n13:22:33[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => '2',\n 'billing_cycle' => 'onetime',\n 'price' => '10000',\n 'amount' => '0',\n 'start_at' => '2025-06-24',\n 'status' => 'default',\n)\n13:22:33[debug]: [87/RAM] 입력 후 내용\n13:22:33[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'price' => 10000,\n 'amount' => 0,\n 'start_at' => '2025-06-24',\n 'status' => 'default',\n 'uid' => 87,\n)\n13:22:33[info]: [RAM]생성되었습니다.:\n13:22:33[debug]: 입력내용\n13:22:33[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 0,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-25',\n 'status' => 'paid',\n)\n13:22:33[debug]: [88/RAM] 입력 후 내용\n13:22:33[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 0,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-25',\n 'status' => 'paid',\n 'uid' => 88,\n)\n13:22:33[info]: [RAM]생성되었습니다.:','default',NULL,'2025-06-25 04:22:33',NULL),(161,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:30:04[debug]: 입력내용\n13:30:04[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => '2',\n 'billing_cycle' => 'onetime',\n 'price' => '10000',\n 'amount' => '0',\n 'start_at' => '2025-06-24',\n 'status' => 'default',\n)\n13:30:04[debug]: [88/RAM] 입력 후 내용\n13:30:04[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'price' => 10000,\n 'amount' => 0,\n 'start_at' => '2025-06-24',\n 'status' => 'default',\n 'uid' => 88,\n)\n13:30:04[info]: [RAM]생성되었습니다.:\n13:30:04[debug]: 입력내용\n13:30:04[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 0,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-25',\n 'user_uid' => '1',\n 'status' => 'paid',\n)\n13:30:04[debug]: [89/RAM] 입력 후 내용\n13:30:04[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 0,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-25',\n 'user_uid' => 1,\n 'status' => 'paid',\n 'uid' => 89,\n)\n13:30:04[info]: [RAM]생성되었습니다.:','default',NULL,'2025-06-25 04:30:04',NULL),(162,1,'Customer/Client','getResultSuccess','작업이 성공적으로 완료되었습니다.','18:40:18[debug]: 입력내용\n18:40:18[debug]: array (\n 'name' => 'Test8888',\n 'email' => 'test8888@co.kr',\n 'phone' => '00000-23423-3434',\n 'role' => 'user,vip,reseller',\n)\n18:40:18[debug]: [8/Test8888] 입력 후 내용\n18:40:18[debug]: array (\n 'name' => 'Test8888',\n 'email' => 'test8888@co.kr',\n 'phone' => '00000-23423-3434',\n 'role' => 'user,vip,reseller',\n 'uid' => 8,\n)\n18:40:18[info]: [Test8888]생성되었습니다.:','default',NULL,'2025-06-25 09:40:18',NULL),(163,1,'Customer/Service','getResultFail','\n------App\\Models\\CommonModel::save_process 오류-----\narray (\n \'user_uid\' => \'The user_uid field is required.\',\n)\n------------------------------\n','18:41:32[debug]: [MP350/MP350] 변경 전 내용\n18:41:32[debug]: array (\n 'status' => 'occupied',\n)\n18:41:32[debug]: array (\n 'code' => 'MP350',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-10 19:11:53.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-10 12:53:54.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n18:41:32[debug]: [MP350/MP350] 변경 후 내용\n18:41:32[debug]: array (\n 'code' => 'MP350',\n 'status' => 'occupied',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-25 18:41:32.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-10 12:53:54.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n18:41:32[debug]: 입력내용\n18:41:32[debug]: array (\n 'clientinfo_uid' => '8',\n 'ownerinfo_uid' => '8',\n 'type' => 'test',\n 'location' => 'default',\n 'switch' => 'R45P20',\n 'code' => 'MP350',\n 'raid' => 'RAID5',\n 'billing_at' => '2025-06-26',\n 'start_at' => '2025-06-25',\n 'status' => 'default',\n)\n18:41:32[error]: \n------App\\Models\\CommonModel::save_process 오류-----\narray (\n 'user_uid' => 'The user_uid field is required.',\n)\n------------------------------\n\n18:41:32[debug]: \n------App\\Models\\CommonModel::save_process 오류-----\narray (\n 'user_uid' => 'The user_uid field is required.',\n)\n------------------------------\n','default',NULL,'2025-06-25 09:41:32',NULL),(164,1,'Customer/Service','getResultSuccess','작업이 성공적으로 완료되었습니다.','18:46:24[debug]: [JPN140/JPN140] 변경 전 내용\n18:46:24[debug]: array (\n 'status' => 'occupied',\n)\n18:46:24[debug]: array (\n 'code' => 'JPN140',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-10 17:11:11.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-10 12:52:49.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n18:46:24[debug]: [JPN140/JPN140] 변경 후 내용\n18:46:24[debug]: array (\n 'code' => 'JPN140',\n 'status' => 'occupied',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-25 18:46:24.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-10 12:52:49.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n18:46:24[debug]: 입력내용\n18:46:24[debug]: array (\n 'clientinfo_uid' => '8',\n 'ownerinfo_uid' => '8',\n 'type' => 'test',\n 'location' => 'default',\n 'switch' => 'R45P20',\n 'code' => 'JPN140',\n 'raid' => 'RAID1',\n 'billing_at' => '2025-06-26',\n 'start_at' => '2025-06-25',\n 'status' => 'default',\n 'user_uid' => '1',\n)\n18:46:24[debug]: [6/S6] 입력 후 내용\n18:46:24[debug]: array (\n 'clientinfo_uid' => '8',\n 'ownerinfo_uid' => '8',\n 'type' => 'test',\n 'location' => 'default',\n 'switch' => 'R45P20',\n 'code' => 'JPN140',\n 'raid' => 'RAID1',\n 'billing_at' => '2025-06-26',\n 'start_at' => '2025-06-25',\n 'status' => 'default',\n 'user_uid' => 1,\n 'uid' => 6,\n)\n18:46:24[info]: [S6]생성되었습니다.:','default',NULL,'2025-06-25 09:46:24',NULL),(165,1,'Customer/Service','getResultFail','Undefined array key \"unPaids\"','18:46:24[debug]: 입력내용\n18:46:24[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Customer/Service',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '18:46:24[debug]: [JPN140/JPN140] 변경 전 내용\n18:46:24[debug]: array (\n \\'status\\' => \\'occupied\\',\n)\n18:46:24[debug]: array (\n \\'code\\' => \\'JPN140\\',\n \\'status\\' => \\'default\\',\n \\'updated_at\\' => \n \\\\CodeIgniter\\\\I18n\\\\Time::__set_state(array(\n \\'timezone\\' => \n \\\\DateTimeZone::__set_state(array(\n \\'timezone_type\\' => 3,\n \\'timezone\\' => \\'Asia/Seoul\\',\n )),\n \\'locale\\' => \\'en\\',\n \\'toStringFormat\\' => \\'yyyy-MM-dd HH:mm:ss\\',\n \\'date\\' => \\'2025-06-10 17:11:11.000000\\',\n \\'timezone_type\\' => 3,\n \\'timezone\\' => \\'Asia/Seoul\\',\n )),\n \\'created_at\\' => \n \\\\CodeIgniter\\\\I18n\\\\Time::__set_state(array(\n \\'timezone\\' => \n \\\\DateTimeZone::__set_state(array(\n \\'timezone_type\\' => 3,\n \\'timezone\\' => \\'Asia/Seoul\\',\n )),\n \\'locale\\' => \\'en\\',\n \\'toStringFormat\\' => \\'yyyy-MM-dd HH:mm:ss\\',\n \\'date\\' => \\'2025-06-10 12:52:49.000000\\',\n \\'timezone_type\\' => 3,\n \\'timezone\\' => \\'Asia/Seoul\\',\n )),\n \\'deleted_at\\' => NULL,\n)\n18:46:24[debug]: [JPN140/JPN140] 변경 후 내용\n18:46:24[debug]: array (\n \\'code\\' => \\'JPN140\\',\n \\'status\\' => \\'occupied\\',\n \\'updated_at\\' => \n \\\\CodeIgniter\\\\I18n\\\\Time::__set_state(array(\n \\'timezone\\' => \n \\\\DateTimeZone::__set_state(array(\n \\'timezone_type\\' => 3,\n \\'timezone\\' => \\'Asia/Seoul\\',\n )),\n \\'locale\\' => \\'en\\',\n \\'toStringFormat\\' => \\'yyyy-MM-dd HH:mm:ss\\',\n \\'date\\' => \\'2025-06-25 18:46:24.000000\\',\n \\'timezone_type\\' => 3,\n \\'timezone\\' => \\'Asia/Seoul\\',\n )),\n \\'created_at\\' => \n \\\\CodeIgniter\\\\I18n\\\\Time::__set_state(array(\n \\'timezone\\' => \n \\\\DateTimeZone::__set_state(array(\n \\'timezone_type\\' => 3,\n \\'timezone\\' => \\'Asia/Seoul\\',\n )),\n \\'locale\\' => \\'en\\',\n \\'toStringFormat\\' => \\'yyyy-MM-dd HH:mm:ss\\',\n \\'date\\' => \\'2025-06-10 12:52:49.000000\\',\n \\'timezone_type\\' => 3,\n \\'timezone\\' => \\'Asia/Seoul\\',\n )),\n \\'deleted_at\\' => NULL,\n)\n18:46:24[debug]: 입력내용\n18:46:24[debug]: array (\n \\'clientinfo_uid\\' => \\'8\\',\n \\'ownerinfo_uid\\' => \\'8\\',\n \\'type\\' => \\'test\\',\n \\'location\\' => \\'default\\',\n \\'switch\\' => \\'R45P20\\',\n \\'code\\' => \\'JPN140\\',\n \\'raid\\' => \\'RAID1\\',\n \\'billing_at\\' => \\'2025-06-26\\',\n \\'start_at\\' => \\'2025-06-25\\',\n \\'status\\' => \\'default\\',\n \\'user_uid\\' => \\'1\\',\n)\n18:46:24[debug]: [6/S6] 입력 후 내용\n18:46:24[debug]: array (\n \\'clientinfo_uid\\' => \\'8\\',\n \\'ownerinfo_uid\\' => \\'8\\',\n \\'type\\' => \\'test\\',\n \\'location\\' => \\'default\\',\n \\'switch\\' => \\'R45P20\\',\n \\'code\\' => \\'JPN140\\',\n \\'raid\\' => \\'RAID1\\',\n \\'billing_at\\' => \\'2025-06-26\\',\n \\'start_at\\' => \\'2025-06-25\\',\n \\'status\\' => \\'default\\',\n \\'user_uid\\' => 1,\n \\'uid\\' => 6,\n)\n18:46:24[info]: [S6]생성되었습니다.:',\n)\n18:46:24[debug]: [164/작업이 성공적으로 완료되었습니다.] 입력 후 내용\n18:46:24[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Customer/Service',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '18:46:24[debug]: [JPN140/JPN140] 변경 전 내용\n18:46:24[debug]: array (\n &#039;status&#039; =&gt; &#039;occupied&#039;,\n)\n18:46:24[debug]: array (\n &#039;code&#039; =&gt; &#039;JPN140&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n &#039;updated_at&#039; =&gt; \n \\\\CodeIgniter\\\\I18n\\\\Time::__set_state(array(\n &#039;timezone&#039; =&gt; \n \\\\DateTimeZone::__set_state(array(\n &#039;timezone_type&#039; =&gt; 3,\n &#039;timezone&#039; =&gt; &#039;Asia/Seoul&#039;,\n )),\n &#039;locale&#039; =&gt; &#039;en&#039;,\n &#039;toStringFormat&#039; =&gt; &#039;yyyy-MM-dd HH:mm:ss&#039;,\n &#039;date&#039; =&gt; &#039;2025-06-10 17:11:11.000000&#039;,\n &#039;timezone_type&#039; =&gt; 3,\n &#039;timezone&#039; =&gt; &#039;Asia/Seoul&#039;,\n )),\n &#039;created_at&#039; =&gt; \n \\\\CodeIgniter\\\\I18n\\\\Time::__set_state(array(\n &#039;timezone&#039; =&gt; \n \\\\DateTimeZone::__set_state(array(\n &#039;timezone_type&#039; =&gt; 3,\n &#039;timezone&#039; =&gt; &#039;Asia/Seoul&#039;,\n )),\n &#039;locale&#039; =&gt; &#039;en&#039;,\n &#039;toStringFormat&#039; =&gt; &#039;yyyy-MM-dd HH:mm:ss&#039;,\n &#039;date&#039; =&gt; &#039;2025-06-10 12:52:49.000000&#039;,\n &#039;timezone_type&#039; =&gt; 3,\n &#039;timezone&#039; =&gt; &#039;Asia/Seoul&#039;,\n )),\n &#039;deleted_at&#039; =&gt; NULL,\n)\n18:46:24[debug]: [JPN140/JPN140] 변경 후 내용\n18:46:24[debug]: array (\n &#039;code&#039; =&gt; &#039;JPN140&#039;,\n &#039;status&#039; =&gt; &#039;occupied&#039;,\n &#039;updated_at&#039; =&gt; \n \\\\CodeIgniter\\\\I18n\\\\Time::__set_state(array(\n &#039;timezone&#039; =&gt; \n \\\\DateTimeZone::__set_state(array(\n &#039;timezone_type&#039; =&gt; 3,\n &#039;timezone&#039; =&gt; &#039;Asia/Seoul&#039;,\n )),\n &#039;locale&#039; =&gt; &#039;en&#039;,\n &#039;toStringFormat&#039; =&gt; &#039;yyyy-MM-dd HH:mm:ss&#039;,\n &#039;date&#039; =&gt; &#039;2025-06-25 18:46:24.000000&#039;,\n &#039;timezone_type&#039; =&gt; 3,\n &#039;timezone&#039; =&gt; &#039;Asia/Seoul&#039;,\n )),\n &#039;created_at&#039; =&gt; \n \\\\CodeIgniter\\\\I18n\\\\Time::__set_state(array(\n &#039;timezone&#039; =&gt; \n \\\\DateTimeZone::__set_state(array(\n &#039;timezone_type&#039; =&gt; 3,\n &#039;timezone&#039; =&gt; &#039;Asia/Seoul&#039;,\n )),\n &#039;locale&#039; =&gt; &#039;en&#039;,\n &#039;toStringFormat&#039; =&gt; &#039;yyyy-MM-dd HH:mm:ss&#039;,\n &#039;date&#039; =&gt; &#039;2025-06-10 12:52:49.000000&#039;,\n &#039;timezone_type&#039; =&gt; 3,\n &#039;timezone&#039; =&gt; &#039;Asia/Seoul&#039;,\n )),\n &#039;deleted_at&#039; =&gt; NULL,\n)\n18:46:24[debug]: 입력내용\n18:46:24[debug]: array (\n &#039;clientinfo_uid&#039; =&gt; &#039;8&#039;,\n &#039;ownerinfo_uid&#039; =&gt; &#039;8&#039;,\n &#039;type&#039; =&gt; &#039;test&#039;,\n &#039;location&#039; =&gt; &#039;default&#039;,\n &#039;switch&#039; =&gt; &#039;R45P20&#039;,\n &#039;code&#039; =&gt; &#039;JPN140&#039;,\n &#039;raid&#039; =&gt; &#039;RAID1&#039;,\n &#039;billing_at&#039; =&gt; &#039;2025-06-26&#039;,\n &#039;start_at&#039; =&gt; &#039;2025-06-25&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n &#039;user_uid&#039; =&gt; &#039;1&#039;,\n)\n18:46:24[debug]: [6/S6] 입력 후 내용\n18:46:24[debug]: array (\n &#039;clientinfo_uid&#039; =&gt; &#039;8&#039;,\n &#039;ownerinfo_uid&#039; =&gt; &#039;8&#039;,\n &#039;type&#039; =&gt; &#039;test&#039;,\n &#039;location&#039; =&gt; &#039;default&#039;,\n &#039;switch&#039; =&gt; &#039;R45P20&#039;,\n &#039;code&#039; =&gt; &#039;JPN140&#039;,\n &#039;raid&#039; =&gt; &#039;RAID1&#039;,\n &#039;billing_at&#039; =&gt; &#039;2025-06-26&#039;,\n &#039;start_at&#039; =&gt; &#039;2025-06-25&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n &#039;user_uid&#039; =&gt; 1,\n &#039;uid&#039; =&gt; 6,\n)\n18:46:24[info]: [S6]생성되었습니다.:',\n 'uid' => 164,\n)\n18:46:24[info]: [작업이 성공적으로 완료되었습니다.]생성되었습니다.:\n18:46:24[debug]: Undefined array key "unPaids"','default',NULL,'2025-06-25 09:46:24',NULL),(166,1,'Customer/Service','getResultFail','Customer/Service 작업 데이터 검증 오류발생\nThe code field is required.','18:47:21[debug]: Customer/Service 작업 데이터 검증 오류발생\nThe code field is required.','default',NULL,'2025-06-25 09:47:21',NULL),(167,1,'Customer/Service','getResultFail','Undefined array key \"unPaids\"','18:47:53[debug]: Undefined array key "unPaids"','default',NULL,'2025-06-25 09:47:53',NULL),(168,1,'Auth/Local','getResultSuccess','작업이 성공적으로 완료되었습니다.','','default',NULL,'2025-06-26 00:31:48',NULL),(169,1,'Auth/Local','getResultSuccess','작업이 성공적으로 완료되었습니다.','','default',NULL,'2025-06-26 00:32:45',NULL),(170,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:03:04[debug]: 입력내용\n10:03:04[debug]: array (\n 'code' => 'R35P10',\n 'status' => 'default',\n)\n10:03:04[debug]: [65a01dea-f50d-44c3-a516-a65b30e853f3/65a01dea-f50d-44c3-a516-a65b30e853f3] 입력 후 내용\n10:03:04[debug]: array (\n 'code' => '65a01dea-f50d-44c3-a516-a65b30e853f3',\n 'status' => 'default',\n)\n10:03:04[info]: [65a01dea-f50d-44c3-a516-a65b30e853f3]생성되었습니다.:','default',NULL,'2025-06-26 01:03:04',NULL),(171,1,'Equipment/Switch','getResultFail','App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','10:03:04[debug]: 입력내용\n10:03:04[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Switch',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:03:04[debug]: 입력내용\n10:03:04[debug]: array (\n \\'code\\' => \\'R35P10\\',\n \\'status\\' => \\'default\\',\n)\n10:03:04[debug]: [65a01dea-f50d-44c3-a516-a65b30e853f3/65a01dea-f50d-44c3-a516-a65b30e853f3] 입력 후 내용\n10:03:04[debug]: array (\n \\'code\\' => \\'65a01dea-f50d-44c3-a516-a65b30e853f3\\',\n \\'status\\' => \\'default\\',\n)\n10:03:04[info]: [65a01dea-f50d-44c3-a516-a65b30e853f3]생성되었습니다.:',\n)\n10:03:04[debug]: [170/작업이 성공적으로 완료되었습니다.] 입력 후 내용\n10:03:04[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Switch',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:03:04[debug]: 입력내용\n10:03:04[debug]: array (\n &#039;code&#039; =&gt; &#039;R35P10&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:03:04[debug]: [65a01dea-f50d-44c3-a516-a65b30e853f3/65a01dea-f50d-44c3-a516-a65b30e853f3] 입력 후 내용\n10:03:04[debug]: array (\n &#039;code&#039; =&gt; &#039;65a01dea-f50d-44c3-a516-a65b30e853f3&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:03:04[info]: [65a01dea-f50d-44c3-a516-a65b30e853f3]생성되었습니다.:',\n 'uid' => 170,\n)\n10:03:04[info]: [작업이 성공적으로 완료되었습니다.]생성되었습니다.:\n10:03:04[debug]: App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','default',NULL,'2025-06-26 01:03:04',NULL),(172,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:03:06[debug]: 입력내용\n10:03:06[debug]: array (\n 'code' => 'R35P10',\n 'status' => 'default',\n)\n10:03:06[debug]: [a795d951-6cd5-4fa7-9704-1c7acf51e010/a795d951-6cd5-4fa7-9704-1c7acf51e010] 입력 후 내용\n10:03:06[debug]: array (\n 'code' => 'a795d951-6cd5-4fa7-9704-1c7acf51e010',\n 'status' => 'default',\n)\n10:03:06[info]: [a795d951-6cd5-4fa7-9704-1c7acf51e010]생성되었습니다.:','default',NULL,'2025-06-26 01:03:06',NULL),(173,1,'Equipment/Switch','getResultFail','App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','10:03:06[debug]: 입력내용\n10:03:06[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Switch',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:03:06[debug]: 입력내용\n10:03:06[debug]: array (\n \\'code\\' => \\'R35P10\\',\n \\'status\\' => \\'default\\',\n)\n10:03:06[debug]: [a795d951-6cd5-4fa7-9704-1c7acf51e010/a795d951-6cd5-4fa7-9704-1c7acf51e010] 입력 후 내용\n10:03:06[debug]: array (\n \\'code\\' => \\'a795d951-6cd5-4fa7-9704-1c7acf51e010\\',\n \\'status\\' => \\'default\\',\n)\n10:03:06[info]: [a795d951-6cd5-4fa7-9704-1c7acf51e010]생성되었습니다.:',\n)\n10:03:06[debug]: [172/작업이 성공적으로 완료되었습니다.] 입력 후 내용\n10:03:06[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Switch',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:03:06[debug]: 입력내용\n10:03:06[debug]: array (\n &#039;code&#039; =&gt; &#039;R35P10&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:03:06[debug]: [a795d951-6cd5-4fa7-9704-1c7acf51e010/a795d951-6cd5-4fa7-9704-1c7acf51e010] 입력 후 내용\n10:03:06[debug]: array (\n &#039;code&#039; =&gt; &#039;a795d951-6cd5-4fa7-9704-1c7acf51e010&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:03:06[info]: [a795d951-6cd5-4fa7-9704-1c7acf51e010]생성되었습니다.:',\n 'uid' => 172,\n)\n10:03:06[info]: [작업이 성공적으로 완료되었습니다.]생성되었습니다.:\n10:03:06[debug]: App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','default',NULL,'2025-06-26 01:03:06',NULL),(174,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:03:17[debug]: 입력내용\n10:03:17[debug]: array (\n 'code' => 'R35P10',\n 'status' => 'default',\n)\n10:03:17[debug]: [5311a375-0ad9-4807-89f7-ab69f0b2ac81/5311a375-0ad9-4807-89f7-ab69f0b2ac81] 입력 후 내용\n10:03:17[debug]: array (\n 'code' => '5311a375-0ad9-4807-89f7-ab69f0b2ac81',\n 'status' => 'default',\n)\n10:03:17[info]: [5311a375-0ad9-4807-89f7-ab69f0b2ac81]생성되었습니다.:','default',NULL,'2025-06-26 01:03:17',NULL),(175,1,'Equipment/Switch','getResultFail','App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','10:03:17[debug]: 입력내용\n10:03:17[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Switch',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:03:17[debug]: 입력내용\n10:03:17[debug]: array (\n \\'code\\' => \\'R35P10\\',\n \\'status\\' => \\'default\\',\n)\n10:03:17[debug]: [5311a375-0ad9-4807-89f7-ab69f0b2ac81/5311a375-0ad9-4807-89f7-ab69f0b2ac81] 입력 후 내용\n10:03:17[debug]: array (\n \\'code\\' => \\'5311a375-0ad9-4807-89f7-ab69f0b2ac81\\',\n \\'status\\' => \\'default\\',\n)\n10:03:17[info]: [5311a375-0ad9-4807-89f7-ab69f0b2ac81]생성되었습니다.:',\n)\n10:03:17[debug]: [174/작업이 성공적으로 완료되었습니다.] 입력 후 내용\n10:03:17[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Switch',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:03:17[debug]: 입력내용\n10:03:17[debug]: array (\n &#039;code&#039; =&gt; &#039;R35P10&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:03:17[debug]: [5311a375-0ad9-4807-89f7-ab69f0b2ac81/5311a375-0ad9-4807-89f7-ab69f0b2ac81] 입력 후 내용\n10:03:17[debug]: array (\n &#039;code&#039; =&gt; &#039;5311a375-0ad9-4807-89f7-ab69f0b2ac81&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:03:17[info]: [5311a375-0ad9-4807-89f7-ab69f0b2ac81]생성되었습니다.:',\n 'uid' => 174,\n)\n10:03:17[info]: [작업이 성공적으로 완료되었습니다.]생성되었습니다.:\n10:03:17[debug]: App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','default',NULL,'2025-06-26 01:03:17',NULL),(176,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:04:18[debug]: 입력내용\n10:04:18[debug]: array (\n 'code' => 'R35P10',\n 'status' => 'default',\n)\n10:04:18[debug]: [78425a9f-7744-4f6e-8ba5-4673ccbe8e4f/78425a9f-7744-4f6e-8ba5-4673ccbe8e4f] 입력 후 내용\n10:04:18[debug]: array (\n 'code' => '78425a9f-7744-4f6e-8ba5-4673ccbe8e4f',\n 'status' => 'default',\n)\n10:04:18[info]: [78425a9f-7744-4f6e-8ba5-4673ccbe8e4f]생성되었습니다.:','default',NULL,'2025-06-26 01:04:18',NULL),(177,1,'Equipment/Switch','getResultFail','App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','10:04:18[debug]: 입력내용\n10:04:18[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Switch',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:04:18[debug]: 입력내용\n10:04:18[debug]: array (\n \\'code\\' => \\'R35P10\\',\n \\'status\\' => \\'default\\',\n)\n10:04:18[debug]: [78425a9f-7744-4f6e-8ba5-4673ccbe8e4f/78425a9f-7744-4f6e-8ba5-4673ccbe8e4f] 입력 후 내용\n10:04:18[debug]: array (\n \\'code\\' => \\'78425a9f-7744-4f6e-8ba5-4673ccbe8e4f\\',\n \\'status\\' => \\'default\\',\n)\n10:04:18[info]: [78425a9f-7744-4f6e-8ba5-4673ccbe8e4f]생성되었습니다.:',\n)\n10:04:18[debug]: [176/작업이 성공적으로 완료되었습니다.] 입력 후 내용\n10:04:18[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Switch',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:04:18[debug]: 입력내용\n10:04:18[debug]: array (\n &#039;code&#039; =&gt; &#039;R35P10&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:04:18[debug]: [78425a9f-7744-4f6e-8ba5-4673ccbe8e4f/78425a9f-7744-4f6e-8ba5-4673ccbe8e4f] 입력 후 내용\n10:04:18[debug]: array (\n &#039;code&#039; =&gt; &#039;78425a9f-7744-4f6e-8ba5-4673ccbe8e4f&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:04:18[info]: [78425a9f-7744-4f6e-8ba5-4673ccbe8e4f]생성되었습니다.:',\n 'uid' => 176,\n)\n10:04:18[info]: [작업이 성공적으로 완료되었습니다.]생성되었습니다.:\n10:04:18[debug]: App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','default',NULL,'2025-06-26 01:04:18',NULL),(178,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:05:43[debug]: 입력내용\n10:05:43[debug]: array (\n 'code' => 'ZEN100',\n 'status' => 'default',\n)\n10:05:43[debug]: [b46f1bad-9c39-4c16-8344-ce3afe67fc80/b46f1bad-9c39-4c16-8344-ce3afe67fc80] 입력 후 내용\n10:05:43[debug]: array (\n 'code' => 'b46f1bad-9c39-4c16-8344-ce3afe67fc80',\n 'status' => 'default',\n)\n10:05:43[info]: [b46f1bad-9c39-4c16-8344-ce3afe67fc80]생성되었습니다.:','default',NULL,'2025-06-26 01:05:43',NULL),(179,1,'Equipment/Code','getResultFail','App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','10:05:43[debug]: 입력내용\n10:05:43[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Code',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:05:43[debug]: 입력내용\n10:05:43[debug]: array (\n \\'code\\' => \\'ZEN100\\',\n \\'status\\' => \\'default\\',\n)\n10:05:43[debug]: [b46f1bad-9c39-4c16-8344-ce3afe67fc80/b46f1bad-9c39-4c16-8344-ce3afe67fc80] 입력 후 내용\n10:05:43[debug]: array (\n \\'code\\' => \\'b46f1bad-9c39-4c16-8344-ce3afe67fc80\\',\n \\'status\\' => \\'default\\',\n)\n10:05:43[info]: [b46f1bad-9c39-4c16-8344-ce3afe67fc80]생성되었습니다.:',\n)\n10:05:43[debug]: [178/작업이 성공적으로 완료되었습니다.] 입력 후 내용\n10:05:43[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Code',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:05:43[debug]: 입력내용\n10:05:43[debug]: array (\n &#039;code&#039; =&gt; &#039;ZEN100&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:05:43[debug]: [b46f1bad-9c39-4c16-8344-ce3afe67fc80/b46f1bad-9c39-4c16-8344-ce3afe67fc80] 입력 후 내용\n10:05:43[debug]: array (\n &#039;code&#039; =&gt; &#039;b46f1bad-9c39-4c16-8344-ce3afe67fc80&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:05:43[info]: [b46f1bad-9c39-4c16-8344-ce3afe67fc80]생성되었습니다.:',\n 'uid' => 178,\n)\n10:05:43[info]: [작업이 성공적으로 완료되었습니다.]생성되었습니다.:\n10:05:43[debug]: App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','default',NULL,'2025-06-26 01:05:43',NULL),(180,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:03:46[debug]: 입력내용\n11:03:46[debug]: array (\n 'code' => 'R35P10',\n 'status' => 'default',\n)\n11:03:46[debug]: [1/R35P10] 입력 후 내용\n11:03:46[debug]: array (\n 'code' => 'R35P10',\n 'status' => 'default',\n 'uid' => 1,\n)\n11:03:46[info]: [R35P10]생성되었습니다.:','default',NULL,'2025-06-26 02:03:46',NULL),(181,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:04:01[debug]: 입력내용\n11:04:01[debug]: array (\n 'code' => 'R45P10',\n 'status' => 'default',\n)\n11:04:01[debug]: [2/R45P10] 입력 후 내용\n11:04:01[debug]: array (\n 'code' => 'R45P10',\n 'status' => 'default',\n 'uid' => 2,\n)\n11:04:01[info]: [R45P10]생성되었습니다.:','default',NULL,'2025-06-26 02:04:01',NULL),(182,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:04:15[debug]: 입력내용\n11:04:15[debug]: array (\n 'code' => 'R45P20',\n 'status' => 'default',\n)\n11:04:15[debug]: [3/R45P20] 입력 후 내용\n11:04:15[debug]: array (\n 'code' => 'R45P20',\n 'status' => 'default',\n 'uid' => 3,\n)\n11:04:15[info]: [R45P20]생성되었습니다.:','default',NULL,'2025-06-26 02:04:15',NULL),(183,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:04:31[debug]: 입력내용\n11:04:31[debug]: array (\n 'code' => 'ZEN100',\n 'status' => 'default',\n)\n11:04:31[debug]: [1/ZEN100] 입력 후 내용\n11:04:31[debug]: array (\n 'code' => 'ZEN100',\n 'status' => 'default',\n 'uid' => 1,\n)\n11:04:31[info]: [ZEN100]생성되었습니다.:','default',NULL,'2025-06-26 02:04:31',NULL),(184,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:04:44[debug]: 입력내용\n11:04:44[debug]: array (\n 'code' => 'JPN-R420',\n 'status' => 'default',\n)\n11:04:44[debug]: [2/JPN-R420] 입력 후 내용\n11:04:44[debug]: array (\n 'code' => 'JPN-R420',\n 'status' => 'default',\n 'uid' => 2,\n)\n11:04:44[info]: [JPN-R420]생성되었습니다.:','default',NULL,'2025-06-26 02:04:44',NULL),(185,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:05:00[debug]: 입력내용\n11:05:00[debug]: array (\n 'code' => 'XEON-T249',\n 'status' => 'default',\n)\n11:05:00[debug]: [3/XEON-T249] 입력 후 내용\n11:05:00[debug]: array (\n 'code' => 'XEON-T249',\n 'status' => 'default',\n 'uid' => 3,\n)\n11:05:00[info]: [XEON-T249]생성되었습니다.:','default',NULL,'2025-06-26 02:05:00',NULL),(186,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:05:10[debug]: 입력내용\n11:05:10[debug]: array (\n 'code' => 'I3-T453',\n 'status' => 'default',\n)\n11:05:10[debug]: [4/I3-T453] 입력 후 내용\n11:05:10[debug]: array (\n 'code' => 'I3-T453',\n 'status' => 'default',\n 'uid' => 4,\n)\n11:05:10[info]: [I3-T453]생성되었습니다.:','default',NULL,'2025-06-26 02:05:10',NULL),(187,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:05:22[debug]: 입력내용\n11:05:22[debug]: array (\n 'code' => 'I5-Z343',\n 'status' => 'default',\n)\n11:05:22[debug]: [5/I5-Z343] 입력 후 내용\n11:05:22[debug]: array (\n 'code' => 'I5-Z343',\n 'status' => 'default',\n 'uid' => 5,\n)\n11:05:22[info]: [I5-Z343]생성되었습니다.:','default',NULL,'2025-06-26 02:05:22',NULL),(188,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:05:34[debug]: 입력내용\n11:05:34[debug]: array (\n 'code' => 'I7-TXR2',\n 'status' => 'default',\n)\n11:05:34[debug]: [6/I7-TXR2] 입력 후 내용\n11:05:34[debug]: array (\n 'code' => 'I7-TXR2',\n 'status' => 'default',\n 'uid' => 6,\n)\n11:05:34[info]: [I7-TXR2]생성되었습니다.:','default',NULL,'2025-06-26 02:05:34',NULL),(189,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:05:46[debug]: 입력내용\n11:05:46[debug]: array (\n 'code' => 'I9-XT432',\n 'status' => 'default',\n)\n11:05:46[debug]: [7/I9-XT432] 입력 후 내용\n11:05:46[debug]: array (\n 'code' => 'I9-XT432',\n 'status' => 'default',\n 'uid' => 7,\n)\n11:05:46[info]: [I9-XT432]생성되었습니다.:','default',NULL,'2025-06-26 02:05:46',NULL),(190,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:06:03[debug]: 입력내용\n11:06:03[debug]: array (\n 'code' => 'M3456',\n 'status' => 'default',\n)\n11:06:03[debug]: [8/M3456] 입력 후 내용\n11:06:03[debug]: array (\n 'code' => 'M3456',\n 'status' => 'default',\n 'uid' => 8,\n)\n11:06:03[info]: [M3456]생성되었습니다.:','default',NULL,'2025-06-26 02:06:03',NULL),(191,1,'Customer/Service','getResultFail','Customer/Service 작업 데이터 검증 오류발생\nThe codeinfo_uid field is required.','11:33:36[debug]: Customer/Service 작업 데이터 검증 오류발생\nThe codeinfo_uid field is required.','default',NULL,'2025-06-26 02:33:36',NULL),(192,1,'Customer/Service','getResultFail','Undefined variable $ntity','13:01:40[debug]: Undefined variable $ntity','default',NULL,'2025-06-26 04:01:40',NULL),(193,1,'Customer/Service','getResultFail','Undefined variable $ntity','13:01:46[debug]: Undefined variable $ntity','default',NULL,'2025-06-26 04:01:46',NULL),(194,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:12:42[debug]: 입력내용\n13:12:42[debug]: array (\n 'code' => 'R30P24',\n 'status' => 'default',\n)\n13:12:42[debug]: [4/R30P24] 입력 후 내용\n13:12:42[debug]: array (\n 'code' => 'R30P24',\n 'status' => 'default',\n 'uid' => 4,\n)\n13:12:42[info]: [R30P24]생성되었습니다.:','default',NULL,'2025-06-26 04:12:42',NULL),(195,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:12:53[debug]: 입력내용\n13:12:53[debug]: array (\n 'code' => 'R30P14',\n 'status' => 'default',\n)\n13:12:53[debug]: [5/R30P14] 입력 후 내용\n13:12:53[debug]: array (\n 'code' => 'R30P14',\n 'status' => 'default',\n 'uid' => 5,\n)\n13:12:53[info]: [R30P14]생성되었습니다.:','default',NULL,'2025-06-26 04:12:53',NULL),(196,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:13:02[debug]: 입력내용\n13:13:02[debug]: array (\n 'code' => 'R20P21',\n 'status' => 'default',\n)\n13:13:02[debug]: [6/R20P21] 입력 후 내용\n13:13:02[debug]: array (\n 'code' => 'R20P21',\n 'status' => 'default',\n 'uid' => 6,\n)\n13:13:02[info]: [R20P21]생성되었습니다.:','default',NULL,'2025-06-26 04:13:02',NULL),(197,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:13:16[debug]: 입력내용\n13:13:16[debug]: array (\n 'code' => 'R12P10',\n 'status' => 'default',\n)\n13:13:16[debug]: [7/R12P10] 입력 후 내용\n13:13:16[debug]: array (\n 'code' => 'R12P10',\n 'status' => 'default',\n 'uid' => 7,\n)\n13:13:16[info]: [R12P10]생성되었습니다.:','default',NULL,'2025-06-26 04:13:16',NULL),(198,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:13:26[debug]: 입력내용\n13:13:26[debug]: array (\n 'code' => 'R07P10',\n 'status' => 'default',\n)\n13:13:26[debug]: [8/R07P10] 입력 후 내용\n13:13:26[debug]: array (\n 'code' => 'R07P10',\n 'status' => 'default',\n 'uid' => 8,\n)\n13:13:26[info]: [R07P10]생성되었습니다.:','default',NULL,'2025-06-26 04:13:26',NULL),(199,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:13:42[debug]: 입력내용\n13:13:42[debug]: array (\n 'code' => 'R44P10',\n 'status' => 'default',\n)\n13:13:42[debug]: [9/R44P10] 입력 후 내용\n13:13:42[debug]: array (\n 'code' => 'R44P10',\n 'status' => 'default',\n 'uid' => 9,\n)\n13:13:42[info]: [R44P10]생성되었습니다.:','default',NULL,'2025-06-26 04:13:42',NULL),(200,1,'Customer/ClientHistory','getResultSuccess','작업이 성공적으로 완료되었습니다.','14:57:53[debug]: 입력내용\n14:57:53[debug]: array (\n 'clientinfo_uid' => '7',\n 'title' => 'test777특이사항1',\n 'description' => '',\n)\n14:57:53[debug]: [1/test777특이사항1] 입력 후 내용\n14:57:53[debug]: array (\n 'clientinfo_uid' => '7',\n 'title' => 'test777특이사항1',\n 'uid' => 1,\n)\n14:57:53[info]: [test777특이사항1]생성되었습니다.:','default',NULL,'2025-06-26 05:57:53',NULL),(201,1,'Customer/ClientHistory','getResultSuccess','작업이 성공적으로 완료되었습니다.','14:58:04[debug]: 입력내용\n14:58:04[debug]: array (\n 'clientinfo_uid' => '7',\n 'title' => 'test777특이사항2',\n 'description' => '',\n)\n14:58:04[debug]: [2/test777특이사항2] 입력 후 내용\n14:58:04[debug]: array (\n 'clientinfo_uid' => '7',\n 'title' => 'test777특이사항2',\n 'uid' => 2,\n)\n14:58:04[info]: [test777특이사항2]생성되었습니다.:','default',NULL,'2025-06-26 05:58:04',NULL),(202,1,'Customer/ClientHistory','getResultSuccess','작업이 성공적으로 완료되었습니다.','14:58:26[debug]: 입력내용\n14:58:26[debug]: array (\n 'clientinfo_uid' => '4',\n 'title' => 'test444특이사항1',\n 'description' => '',\n)\n14:58:26[debug]: [3/test444특이사항1] 입력 후 내용\n14:58:26[debug]: array (\n 'clientinfo_uid' => '4',\n 'title' => 'test444특이사항1',\n 'uid' => 3,\n)\n14:58:26[info]: [test444특이사항1]생성되었습니다.:','default',NULL,'2025-06-26 05:58:26',NULL),(203,1,'Customer/ClientHistory','getResultSuccess','작업이 성공적으로 완료되었습니다.','14:58:35[debug]: 입력내용\n14:58:35[debug]: array (\n 'clientinfo_uid' => '4',\n 'title' => 'test444특이사항2',\n 'description' => '',\n)\n14:58:35[debug]: [4/test444특이사항2] 입력 후 내용\n14:58:35[debug]: array (\n 'clientinfo_uid' => '4',\n 'title' => 'test444특이사항2',\n 'uid' => 4,\n)\n14:58:35[info]: [test444특이사항2]생성되었습니다.:','default',NULL,'2025-06-26 05:58:35',NULL),(204,1,'Customer/Service','getResultFail','Customer/Service 작업 데이터 검증 오류발생\nThe switchinfo_uid field is required.','11:27:18[debug]: Customer/Service 작업 데이터 검증 오류발생\nThe switchinfo_uid field is required.','default',NULL,'2025-06-30 02:27:18',NULL),(205,1,'Customer/Service','getResultFail','Customer/Service 작업 데이터 검증 오류발생\nThe switchinfo_uid field is required.','11:27:56[debug]: Customer/Service 작업 데이터 검증 오류발생\nThe switchinfo_uid field is required.','default',NULL,'2025-06-30 02:27:56',NULL),(206,1,'Customer/Service','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:36:21[debug]: [3/S3] 변경 전 내용\n11:36:21[debug]: array (\n 'clientinfo_uid' => '4',\n 'ownerinfo_uid' => '4',\n 'type' => 'dedicated',\n 'location' => 'default',\n 'switchinfo_uid' => '6',\n 'codeinfo_uid' => '7',\n 'raid' => 'RAID5',\n 'billing_at' => '2025-07-14',\n 'start_at' => '2025-06-04',\n 'status' => 'default',\n 'user_uid' => '1',\n)\n11:36:21[debug]: array (\n 'uid' => '3',\n 'clientinfo_uid' => '4',\n 'ownerinfo_uid' => '4',\n 'user_uid' => 1,\n 'switchinfo_uid' => '6',\n 'codeinfo_uid' => '7',\n 'location' => 'default',\n 'type' => 'dedicated',\n 'raid' => 'RAID5',\n 'billing_at' => '2025-07-18',\n 'start_at' => '2025-06-04',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-26 13:14:37.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-11 17:20:37.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n11:36:21[debug]: [3/S3] 변경 후 내용\n11:36:21[debug]: array (\n 'uid' => '3',\n 'clientinfo_uid' => '4',\n 'ownerinfo_uid' => '4',\n 'user_uid' => 1,\n 'switchinfo_uid' => '6',\n 'codeinfo_uid' => '7',\n 'location' => 'default',\n 'type' => 'dedicated',\n 'raid' => 'RAID5',\n 'billing_at' => '2025-07-14',\n 'start_at' => '2025-06-04',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-30 11:36:21.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-11 17:20:37.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n11:36:21[info]: [S3]수정되였습니다.:','default',NULL,'2025-06-30 02:36:21',NULL),(207,1,'Customer/Service','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:36:42[debug]: [1/S1] 변경 전 내용\n11:36:42[debug]: array (\n 'clientinfo_uid' => '1',\n 'ownerinfo_uid' => '1',\n 'type' => 'defence',\n 'location' => 'tokyo',\n 'switchinfo_uid' => '9',\n 'codeinfo_uid' => '8',\n 'raid' => 'RAID1',\n 'billing_at' => '2025-07-22',\n 'start_at' => '2025-06-02',\n 'status' => 'default',\n 'user_uid' => '1',\n)\n11:36:42[debug]: array (\n 'uid' => '1',\n 'clientinfo_uid' => '1',\n 'ownerinfo_uid' => '1',\n 'user_uid' => 1,\n 'switchinfo_uid' => '9',\n 'codeinfo_uid' => '8',\n 'location' => 'tokyo',\n 'type' => 'defence',\n 'raid' => 'RAID1',\n 'billing_at' => '2025-07-18',\n 'start_at' => '2025-06-02',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-26 13:14:55.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-02 12:37:30.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n11:36:42[debug]: [1/S1] 변경 후 내용\n11:36:42[debug]: array (\n 'uid' => '1',\n 'clientinfo_uid' => '1',\n 'ownerinfo_uid' => '1',\n 'user_uid' => 1,\n 'switchinfo_uid' => '9',\n 'codeinfo_uid' => '8',\n 'location' => 'tokyo',\n 'type' => 'defence',\n 'raid' => 'RAID1',\n 'billing_at' => '2025-07-22',\n 'start_at' => '2025-06-02',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-30 11:36:42.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-06-02 12:37:30.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n11:36:42[info]: [S1]수정되였습니다.:','default',NULL,'2025-06-30 02:36:42',NULL),(208,1,'Customer/Service','getResultFail','Undefined array key \"entity\"','10:10:14[debug]: Undefined array key "entity"','default',NULL,'2025-07-01 01:10:14',NULL),(209,1,'Customer/Service','getResultFail','Uninitialized string offset 8','10:16:16[debug]: Uninitialized string offset 8','default',NULL,'2025-07-01 01:16:16',NULL),(210,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','15:05:11[debug]: 입력내용\n15:05:11[debug]: array (\n 'id' => 'test1234',\n 'passwd' => '1234',\n 'confirmpassword' => '1234',\n 'name' => 'test1234',\n 'email' => 'test@gmail.com',\n 'mobile' => '0434434327',\n 'role' => 'manager,cloudflare,firewall,security,director,master',\n)\n15:05:11[debug]: [43/test1234] 입력 후 내용\n15:05:11[debug]: array (\n 'id' => 'test1234',\n 'passwd' => '$2y$10$21wlqjmdfDlIr0vAjDzs6ubIchc1DwOG61GGkZUwY7gb9GMTxA96K',\n 'confirmpassword' => '$2y$10$gEzC/vDJ9s0rPMe0zl0HFu3N2R7PkDHBC1xlH6gPBj2CYZKe4RHDG',\n 'name' => 'test1234',\n 'email' => 'test@gmail.com',\n 'mobile' => '0434434327',\n 'role' => 'manager,cloudflare,firewall,security,director,master',\n 'uid' => 43,\n)\n15:05:11[info]: [test1234]생성되었습니다.:','default',NULL,'2025-07-01 06:05:11',NULL),(211,1,'User','getResultFail','Undefined array key \"mast\"','15:05:11[debug]: 입력내용\n15:05:11[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'User',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '15:05:11[debug]: 입력내용\n15:05:11[debug]: array (\n \\'id\\' => \\'test1234\\',\n \\'passwd\\' => \\'1234\\',\n \\'confirmpassword\\' => \\'1234\\',\n \\'name\\' => \\'test1234\\',\n \\'email\\' => \\'test@gmail.com\\',\n \\'mobile\\' => \\'0434434327\\',\n \\'role\\' => \\'manager,cloudflare,firewall,security,director,master\\',\n)\n15:05:11[debug]: [43/test1234] 입력 후 내용\n15:05:11[debug]: array (\n \\'id\\' => \\'test1234\\',\n \\'passwd\\' => \\'$2y$10$21wlqjmdfDlIr0vAjDzs6ubIchc1DwOG61GGkZUwY7gb9GMTxA96K\\',\n \\'confirmpassword\\' => \\'$2y$10$gEzC/vDJ9s0rPMe0zl0HFu3N2R7PkDHBC1xlH6gPBj2CYZKe4RHDG\\',\n \\'name\\' => \\'test1234\\',\n \\'email\\' => \\'test@gmail.com\\',\n \\'mobile\\' => \\'0434434327\\',\n \\'role\\' => \\'manager,cloudflare,firewall,security,director,master\\',\n \\'uid\\' => 43,\n)\n15:05:11[info]: [test1234]생성되었습니다.:',\n)\n15:05:11[debug]: [210/작업이 성공적으로 완료되었습니다.] 입력 후 내용\n15:05:11[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'User',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '15:05:11[debug]: 입력내용\n15:05:11[debug]: array (\n &#039;id&#039; =&gt; &#039;test1234&#039;,\n &#039;passwd&#039; =&gt; &#039;1234&#039;,\n &#039;confirmpassword&#039; =&gt; &#039;1234&#039;,\n &#039;name&#039; =&gt; &#039;test1234&#039;,\n &#039;email&#039; =&gt; &#039;test@gmail.com&#039;,\n &#039;mobile&#039; =&gt; &#039;0434434327&#039;,\n &#039;role&#039; =&gt; &#039;manager,cloudflare,firewall,security,director,master&#039;,\n)\n15:05:11[debug]: [43/test1234] 입력 후 내용\n15:05:11[debug]: array (\n &#039;id&#039; =&gt; &#039;test1234&#039;,\n &#039;passwd&#039; =&gt; &#039;$2y$10$21wlqjmdfDlIr0vAjDzs6ubIchc1DwOG61GGkZUwY7gb9GMTxA96K&#039;,\n &#039;confirmpassword&#039; =&gt; &#039;$2y$10$gEzC/vDJ9s0rPMe0zl0HFu3N2R7PkDHBC1xlH6gPBj2CYZKe4RHDG&#039;,\n &#039;name&#039; =&gt; &#039;test1234&#039;,\n &#039;email&#039; =&gt; &#039;test@gmail.com&#039;,\n &#039;mobile&#039; =&gt; &#039;0434434327&#039;,\n &#039;role&#039; =&gt; &#039;manager,cloudflare,firewall,security,director,master&#039;,\n &#039;uid&#039; =&gt; 43,\n)\n15:05:11[info]: [test1234]생성되었습니다.:',\n 'uid' => 210,\n)\n15:05:11[info]: [작업이 성공적으로 완료되었습니다.]생성되었습니다.:\n15:05:11[debug]: Undefined array key "mast"','default',NULL,'2025-07-01 06:05:11',NULL),(212,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe id field must contain a unique value.\nThe email field must contain a unique value.','15:05:21[debug]: User 작업 데이터 검증 오류발생\nThe id field must contain a unique value.\nThe email field must contain a unique value.','default',NULL,'2025-07-01 06:05:21',NULL),(213,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','15:09:31[debug]: [43/test1234] 변경 전 내용\n15:09:31[debug]: array (\n 'id' => 'test1234',\n 'name' => 'test1234',\n 'email' => 'test@gmail.com',\n 'mobile' => '0434434327',\n 'role' => 'manager,cloudflare',\n)\n15:09:31[debug]: array (\n 'uid' => '43',\n 'id' => 'test1234',\n 'passwd' => '$2y$10$21wlqjmdfDlIr0vAjDzs6ubIchc1DwOG61GGkZUwY7gb9GMTxA96K',\n 'name' => 'test1234',\n 'email' => 'test@gmail.com',\n 'mobile' => '0434434327',\n 'role' => 'manager,cloudflare,firewall,security,director,master',\n 'status' => 'default',\n 'updated_at' => NULL,\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-07-01 15:05:11.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n15:09:31[debug]: [43/test1234] 변경 후 내용\n15:09:31[debug]: array (\n 'uid' => '43',\n 'id' => 'test1234',\n 'passwd' => '$2y$10$21wlqjmdfDlIr0vAjDzs6ubIchc1DwOG61GGkZUwY7gb9GMTxA96K',\n 'name' => 'test1234',\n 'email' => 'test@gmail.com',\n 'mobile' => '0434434327',\n 'role' => 'manager,cloudflare',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-07-01 15:09:31.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-07-01 15:05:11.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n15:09:31[info]: [test1234]수정되였습니다.:','default',NULL,'2025-07-01 06:09:31',NULL),(214,1,'User','getResultFail','Undefined array key \"filter_optons\"','15:47:00[debug]: Undefined array key "filter_optons"','default',NULL,'2025-07-01 06:47:00',NULL),(215,1,'User','getResultFail','Undefined array key \"filter_optons\"','15:48:31[debug]: Undefined array key "filter_optons"','default',NULL,'2025-07-01 06:48:31',NULL),(216,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','15:48:53[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-01 06:48:53',NULL),(217,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','08:59:02[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-01 23:59:02',NULL),(218,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','13:19:14[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 04:19:14',NULL),(219,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','13:20:53[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 04:20:53',NULL),(220,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','16:05:25[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 07:05:25',NULL),(221,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','16:20:59[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 07:20:59',NULL),(222,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','16:21:08[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 07:21:08',NULL),(223,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','16:23:25[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 07:23:25',NULL),(224,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','16:23:32[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 07:23:32',NULL),(225,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','16:26:24[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 07:26:24',NULL),(226,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','16:26:34[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 07:26:34',NULL),(227,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','16:48:04[info]: [최준흠]수정되였습니다.:','default',NULL,'2025-07-02 07:48:04',NULL),(228,1,'User','getResultFail','\n------App\\Models\\CommonModel::save_process 오류-----\narray (\n \'CodeIgniter\\\\Database\\\\MySQLi\\\\Connection\' => \'Duplicate entry \\\'cho.jh\\\' for key \\\'UQ_id\\\'\',\n)\n------------------------------\n','16:51:06[debug]: \n------App\\Models\\CommonModel::save_process 오류-----\narray (\n 'CodeIgniter\\\\Database\\\\MySQLi\\\\Connection' => 'Duplicate entry \\'cho.jh\\' for key \\'UQ_id\\'',\n)\n------------------------------\n\n16:51:06[debug]: \n------App\\Models\\CommonModel::save_process 오류-----\narray (\n 'CodeIgniter\\\\Database\\\\MySQLi\\\\Connection' => 'Duplicate entry \\'cho.jh\\' for key \\'UQ_id\\'',\n)\n------------------------------\n','default',NULL,'2025-07-02 07:51:06',NULL),(229,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','16:51:24[info]: [최준흠111]수정되였습니다.:','default',NULL,'2025-07-02 07:51:24',NULL),(230,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','16:53:46[info]: [최준흠]수정되였습니다.:','default',NULL,'2025-07-02 07:53:46',NULL),(231,1,'User','getResultFail','변경할 조건항목을 선택하셔야합니다.','16:58:24[debug]: 변경할 조건항목을 선택하셔야합니다.','default',NULL,'2025-07-02 07:58:24',NULL),(232,1,'User','getResultFail','action이 정의되지 않았습니다.','16:58:33[debug]: action이 정의되지 않았습니다.','default',NULL,'2025-07-02 07:58:33',NULL),(233,1,'User','getResultFail','action이 정의되지 않았습니다.','16:58:43[debug]: action이 정의되지 않았습니다.','default',NULL,'2025-07-02 07:58:43',NULL),(234,1,'Equipment/Part/Domain','getResultFail','Invalid file: \"templates/admin/form_content_top.php\"','17:31:11[debug]: Invalid file: "templates/admin/form_content_top.php"','default',NULL,'2025-07-03 08:31:11',NULL),(235,1,'Customer/ServiceItem','getResultFail','Invalid file: \"admin/popup/create_form.php\"','17:40:02[debug]: Invalid file: "admin/popup/create_form.php"','default',NULL,'2025-07-03 08:40:02',NULL),(236,1,'User','getResultFail','Invalid file: \"admin/profile_modify_form.php\"','17:51:07[debug]: Invalid file: "admin/profile_modify_form.php"','default',NULL,'2025-07-03 08:51:07',NULL),(237,1,'Equipment/Part/Domain','getResultFail','Equipment/Part/Domain 작업 데이터 검증 오류발생\n올바른 도메인 형식이 아닙니다.','13:20:45[debug]: Equipment/Part/Domain 작업 데이터 검증 오류발생\n올바른 도메인 형식이 아닙니다.','default',NULL,'2025-07-04 04:20:45',NULL); /*!40000 ALTER TABLE `logger` ENABLE KEYS */; UNLOCK TABLES; @@ -825,7 +822,7 @@ CREATE TABLE `user` ( LOCK TABLES `user` WRITE; /*!40000 ALTER TABLE `user` DISABLE KEYS */; -INSERT INTO `user` VALUES (1,'choi.jh','$2y$10$.vl2FtwJsjMNFCJJm3ISDu7m3vBB85mZ5fRQxcfI0uK/2D1e8Xora','최준흠','choi.jh@prime-idc.jp','0434434327','manager,cloudflare,firewall,director,master','default','2025-07-02 07:53:46','2023-03-23 06:50:04',NULL),(2,'cho.jh','$2y$10$ot/aUXR/W1n4Q3dZA2dZCOxQrpVb2Bq31Y7xFQS3G6D1gtImmyBjm','조준희','cho.jh@prime-idc.jp',NULL,'manager,cloudflare','default','2023-05-30 14:35:55','2023-03-24 02:20:48',NULL),(4,'kimdy','$2y$10$18uyn94xdprzAnt.oYZ5weAvb8rRLhkz/SdQrjEK7yuGhCr9PlUCC','김동윤','kimdy@prime-idc.jp',NULL,'manager,cloudflare,security','default','2025-06-24 01:10:17','2023-03-24 02:21:50',NULL),(5,'kimhy','$2y$10$.yEKVqY.F7HoSOZijl4uyeulUtfAQ4EDRiyR2JpgFYBuKw.mZoZvG','김효영','khy@prime-idc.jp',NULL,'manager,security,director','default','2025-06-24 01:11:41','2023-03-24 02:23:18',NULL),(6,'kim.eh','$2y$10$YmwicI.Br4XNyGamfRADMOu.qlkwKd2fmnNkL7YIkNHGndvqYPnCq','김은혁','kim.eh@prime-idc.jp',NULL,'manager,cloudflare,security','default','2025-06-24 01:09:38','2023-03-24 02:23:52',NULL),(7,'leeph','$2y$10$lR739WzJsW6rDLgchYs7buek4BYeTlKHTQY60RDqRms9Io7RSY3AC','이풍호','leeph@prime-idc.jp',NULL,'manager,cloudflare','default','2023-05-29 16:32:52','2023-03-24 02:24:21',NULL),(8,'jinmingyu','$2y$10$PI8WA6d/z4hDE6hxJoUhbuMH3vTTWH0Ry2Z6fTLUUpwQGaE/9bEZa','김명옥','jinmingyu@idcjp.jp',NULL,'manager,cloudflare,security','default','2025-06-24 01:09:47','2023-03-24 02:25:00',NULL),(9,'kangdh','$2y$10$gu9OS2DDQQ5H.Hh61t3BSOUp87l35q.xsduVSxvCcn8IgA4jrATgG','강동헌','kang.dh@idcjp.jp',NULL,'manager,cloudflare','default','2023-06-22 23:59:07','2023-03-24 02:25:48',NULL),(10,'yoohs','$2y$10$TGASk98FuZ6Ux6FDquu1aO3rztA01MCle/Vs1.3iaEMQzakAbCzJy','유혜성','yoo.hs@idcjp.jp',NULL,'manager,cloudflare','default','2023-06-02 02:07:19','2023-03-24 02:26:31',NULL),(11,'kim.yh','$2y$10$8GciQXpKYiR3TDWQfh9JjOQAQ.YWGoOSCL0a0/w4XACO0mUgjjbWy','김영환','kim.yh@idcjp.jp',NULL,'manager,cloudflare,firewall','default','2023-10-16 23:08:51','2023-03-24 02:27:05',NULL),(12,'yunmuj','$2y$10$zkgwGVj2JSOVIsxLe8fePe1gvWWaCemfZMktzBlrN8oLb3CKydkZC','윤무정','yunmuj@idcjp.jp',NULL,'manager,cloudflare','default','2024-06-12 00:21:07','2023-03-24 02:27:59',NULL),(13,'kim.mt','$2y$10$3dfkA0oq4LqiJOmjbBGKe.p0Dhj/MDqjoTdw11BOPF/H2qJqnEuHO','김문태','kim.mt@idcjp.jp',NULL,'manager,cloudflare','default','2023-05-31 14:22:43','2023-03-24 02:28:31',NULL),(14,'shin.ms','$2y$10$.jaDkGtm/gZK3ZDF.fJUGOwMI7Zif5588X5AxSMvvk238RDI7spQ6','신민수','shin.ms@idcjp.jp',NULL,'manager,cloudflare','default','2023-03-24 02:29:00','2023-03-24 02:29:00',NULL),(15,'park.sm','$2y$10$BwMxw0uvw2tAdQ0EZQ2/hu.Q7zYu7mbuBPPRTaa14bwG3VLf0cXfu','박선미','park.sm@idcjp.jp',NULL,'manager,cloudflare','default','2024-03-12 02:14:09','2023-03-24 02:29:34',NULL),(24,'kobn','$2y$10$pWM/XFfSNeSng32sypbDX.WaR4UlM4EDkYKCQfFkYIOC7Ppg0nc5G','고병남','ko@prime-idc.jp',NULL,'manager,cloudflare,security','default','2025-06-24 01:10:02','2024-10-29 06:30:19',NULL),(25,'jeong.sg','$2y$10$OzH6140JztiUEs4s/VHbPOxfxubFooqwqVhGpdFG8OJCGAFXNu546','정상구','jeong.sg@prime-idc.jp',NULL,'manager,cloudflare','default','2025-01-23 00:30:13','2025-01-23 00:29:46',NULL),(43,'test1234','$2y$10$21wlqjmdfDlIr0vAjDzs6ubIchc1DwOG61GGkZUwY7gb9GMTxA96K','test1234','test@gmail.com','0434434327','manager,cloudflare','default','2025-07-01 06:09:31','2025-07-01 06:05:11',NULL); +INSERT INTO `user` VALUES (1,'choi.jh','$2y$10$.vl2FtwJsjMNFCJJm3ISDu7m3vBB85mZ5fRQxcfI0uK/2D1e8Xora','최준흠','choi.jh@prime-idc.jp','0434434327','manager,cloudflare,firewall,director,master','default','2025-07-02 07:53:46','2023-03-23 06:50:04',NULL),(2,'cho.jh','$2y$10$ot/aUXR/W1n4Q3dZA2dZCOxQrpVb2Bq31Y7xFQS3G6D1gtImmyBjm','조준희','cho.jh@prime-idc.jp',NULL,'manager,cloudflare','default','2023-05-30 14:35:55','2023-03-24 02:20:48',NULL),(4,'kimdy','$2y$10$18uyn94xdprzAnt.oYZ5weAvb8rRLhkz/SdQrjEK7yuGhCr9PlUCC','김동윤','kimdy@prime-idc.jp',NULL,'manager,cloudflare,security','default','2025-06-24 01:10:17','2023-03-24 02:21:50',NULL),(5,'kimhy','$2y$10$.yEKVqY.F7HoSOZijl4uyeulUtfAQ4EDRiyR2JpgFYBuKw.mZoZvG','김효영','khy@prime-idc.jp',NULL,'manager,security,director','default','2025-06-24 01:11:41','2023-03-24 02:23:18',NULL),(6,'kim.eh','$2y$10$YmwicI.Br4XNyGamfRADMOu.qlkwKd2fmnNkL7YIkNHGndvqYPnCq','김은혁','kim.eh@prime-idc.jp',NULL,'manager,cloudflare,security','default','2025-06-24 01:09:38','2023-03-24 02:23:52',NULL),(7,'leeph','$2y$10$lR739WzJsW6rDLgchYs7buek4BYeTlKHTQY60RDqRms9Io7RSY3AC','이풍호','leeph@prime-idc.jp',NULL,'manager,cloudflare','default','2023-05-29 16:32:52','2023-03-24 02:24:21',NULL),(8,'jinmingyu','$2y$10$PI8WA6d/z4hDE6hxJoUhbuMH3vTTWH0Ry2Z6fTLUUpwQGaE/9bEZa','김명옥','jinmingyu@idcjp.jp',NULL,'manager,cloudflare,security','default','2025-06-24 01:09:47','2023-03-24 02:25:00',NULL),(9,'kangdh','$2y$10$gu9OS2DDQQ5H.Hh61t3BSOUp87l35q.xsduVSxvCcn8IgA4jrATgG','강동헌','kang.dh@idcjp.jp',NULL,'manager,cloudflare','default','2023-06-22 23:59:07','2023-03-24 02:25:48',NULL),(10,'yoohs','$2y$10$TGASk98FuZ6Ux6FDquu1aO3rztA01MCle/Vs1.3iaEMQzakAbCzJy','유혜성','yoo.hs@idcjp.jp',NULL,'manager,cloudflare','default','2023-06-02 02:07:19','2023-03-24 02:26:31',NULL),(11,'kim.yh','$2y$10$8GciQXpKYiR3TDWQfh9JjOQAQ.YWGoOSCL0a0/w4XACO0mUgjjbWy','김영환','kim.yh@idcjp.jp',NULL,'manager,cloudflare,firewall','default','2023-10-16 23:08:51','2023-03-24 02:27:05',NULL),(12,'yunmuj','$2y$10$zkgwGVj2JSOVIsxLe8fePe1gvWWaCemfZMktzBlrN8oLb3CKydkZC','윤무정','yunmuj@idcjp.jp',NULL,'manager,cloudflare','default','2024-06-12 00:21:07','2023-03-24 02:27:59',NULL),(13,'kim.mt','$2y$10$3dfkA0oq4LqiJOmjbBGKe.p0Dhj/MDqjoTdw11BOPF/H2qJqnEuHO','김문태','kim.mt@idcjp.jp',NULL,'manager,cloudflare','default','2023-05-31 14:22:43','2023-03-24 02:28:31',NULL),(14,'shin.ms','$2y$10$.jaDkGtm/gZK3ZDF.fJUGOwMI7Zif5588X5AxSMvvk238RDI7spQ6','신민수','shin.ms@idcjp.jp',NULL,'manager,cloudflare','default','2023-03-24 02:29:00','2023-03-24 02:29:00',NULL),(15,'park.sm','$2y$10$BwMxw0uvw2tAdQ0EZQ2/hu.Q7zYu7mbuBPPRTaa14bwG3VLf0cXfu','박선미','park.sm@idcjp.jp',NULL,'manager,cloudflare','default','2024-03-12 02:14:09','2023-03-24 02:29:34',NULL),(24,'kobn','$2y$10$pWM/XFfSNeSng32sypbDX.WaR4UlM4EDkYKCQfFkYIOC7Ppg0nc5G','고병남','ko@prime-idc.jp',NULL,'manager,cloudflare,security','default','2025-06-24 01:10:02','2024-10-29 06:30:19',NULL),(25,'jeong.sg','$2y$10$OzH6140JztiUEs4s/VHbPOxfxubFooqwqVhGpdFG8OJCGAFXNu546','정상구','jeong.sg@prime-idc.jp',NULL,'manager,cloudflare','default','2025-07-02 08:03:14','2025-01-23 00:29:46',NULL),(43,'test1234','$2y$10$21wlqjmdfDlIr0vAjDzs6ubIchc1DwOG61GGkZUwY7gb9GMTxA96K','test1234','test@gmail.com','0434434327','manager,cloudflare','default','2025-07-02 08:03:20','2025-07-01 06:05:11',NULL); /*!40000 ALTER TABLE `user` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; @@ -838,4 +835,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2025-07-02 16:53:59 +-- Dump completed on 2025-07-04 16:56:51 diff --git a/app/Database/erp2_2.vuerd.json b/app/Database/erp2_2.vuerd.json index 88f4e9a..b04ddb1 100644 --- a/app/Database/erp2_2.vuerd.json +++ b/app/Database/erp2_2.vuerd.json @@ -4,8 +4,8 @@ "settings": { "width": 3000, "height": 3000, - "scrollTop": -695.5286, - "scrollLeft": -409.6025, + "scrollTop": -1339.1952, + "scrollLeft": -710.6025, "zoomLevel": 0.79, "show": 511, "database": 4, @@ -63,7 +63,6 @@ "wX0DbZb_RcK85hWv9dxcX", "anhMCXytE7rcE_drKBPWz", "Wma86GpS3BhikEaHSamgX", - "I80TuGxKm3tXIO_EO2PSm", "o8yw46vm30cC7wl9cRMdo", "ocWjncqwtYkP02mw4A0-8", "Hj5AZkoYGvM_syvnqMeOi", @@ -717,7 +716,6 @@ "comment": "도메인 정보", "columnIds": [ "XnNj7H0bnTxo_NuZm7BOs", - "U3pGwK2LVZA4wQ1xa6EcF", "w404_rDrrYyt26iqY8Eur", "E8iokQ-rKyw43cNe746kt", "SeMtkfNiltpn4j-M-XkG-", @@ -745,14 +743,14 @@ ], "ui": { "x": 2396.448, - "y": 1019.4062, + "y": 1063.71, "zIndex": 1276, "widthName": 63, "widthComment": 65, "color": "" }, "meta": { - "updateAt": 1750828790659, + "updateAt": 1751612551642, "createAt": 1748218895681 } }, @@ -796,15 +794,15 @@ "n9ZWAQ9754sZ3MM4IxCAA" ], "ui": { - "x": 146.1271, - "y": 927.5572, + "x": 143.5955, + "y": 908.5701, "zIndex": 2278, "widthName": 110, "widthComment": 60, "color": "" }, "meta": { - "updateAt": 1750916226017, + "updateAt": 1751612577827, "createAt": 1748484896313 } }, @@ -6239,7 +6237,7 @@ "default": "", "options": 8, "ui": { - "keys": 2, + "keys": 0, "widthName": 73, "widthComment": 60, "widthDataType": 60, @@ -7683,7 +7681,7 @@ "_AcWUYKzNJd-V0fRHq8Cx" ], "x": 2158.5371, - "y": 648.4446, + "y": 662.7779333333333, "direction": 2 }, "end": { @@ -7739,7 +7737,7 @@ "_AcWUYKzNJd-V0fRHq8Cx" ], "x": 2158.5371, - "y": 820.4446, + "y": 892.1112666666666, "direction": 2 }, "end": { @@ -7767,7 +7765,7 @@ "_AcWUYKzNJd-V0fRHq8Cx" ], "x": 2158.5371, - "y": 734.4446, + "y": 777.4445999999999, "direction": 2 }, "end": { @@ -7980,34 +7978,6 @@ "createAt": 1749520727362 } }, - "6oBuPqT-ikPI7X8a05Trv": { - "id": "6oBuPqT-ikPI7X8a05Trv", - "identification": false, - "relationshipType": 16, - "startRelationshipType": 2, - "start": { - "tableId": "JoMB-mb6p6NoHpiAvjD2y", - "columnIds": [ - "FMB1Pw8d7ED0xlrEAdVok" - ], - "x": 1697.1127, - "y": 1340.0307, - "direction": 1 - }, - "end": { - "tableId": "B8haiEbPc1lRBWTv1g25G", - "columnIds": [ - "O7aGU_LJxCO1NeNVWbB-J" - ], - "x": 1457.1138999999998, - "y": 1366.5724666666667, - "direction": 2 - }, - "meta": { - "updateAt": 1749527376196, - "createAt": 1749527376196 - } - }, "Hj5AZkoYGvM_syvnqMeOi": { "id": "Hj5AZkoYGvM_syvnqMeOi", "identification": false, @@ -8027,8 +7997,8 @@ "columnIds": [ "ZWV8iXrgQovfYTm32QGbZ" ], - "x": 694.1271, - "y": 1254.2238666666667, + "x": 691.5955, + "y": 1235.2367666666667, "direction": 2 }, "meta": { @@ -8055,8 +8025,8 @@ "columnIds": [ "yc1mNA3iMmF8xoUX60z6F" ], - "x": 694.1271, - "y": 1123.5572, + "x": 691.5955, + "y": 1104.5701, "direction": 2 }, "meta": { @@ -8092,34 +8062,6 @@ "createAt": 1750645375148 } }, - "2TcX9drzSjfyNoNBwHe2B": { - "id": "2TcX9drzSjfyNoNBwHe2B", - "identification": false, - "relationshipType": 16, - "startRelationshipType": 2, - "start": { - "tableId": "6ajvOCaGuXU9pzV0Y9jEi", - "columnIds": [ - "_AcWUYKzNJd-V0fRHq8Cx" - ], - "x": 1627.5371, - "y": 734.4446, - "direction": 1 - }, - "end": { - "tableId": "QCNA57Pi6A9dJDgybxS5v", - "columnIds": [ - "38UvwuKxUk-yugwJmu0o0" - ], - "x": 684.0004, - "y": 1019.2028, - "direction": 2 - }, - "meta": { - "updateAt": 1750667733988, - "createAt": 1750667733988 - } - }, "e74Cc4zZztxyoazM_ssbu": { "id": "e74Cc4zZztxyoazM_ssbu", "identification": false, @@ -8139,8 +8081,8 @@ "columnIds": [ "s1Az-lXWK0NlVQqFEEK8o" ], - "x": 694.1271, - "y": 992.8905333333332, + "x": 691.5955, + "y": 973.9034333333333, "direction": 2 }, "meta": { @@ -8148,34 +8090,6 @@ "createAt": 1750829265309 } }, - "FHzw49BTN_7RwEJXeKdhl": { - "id": "FHzw49BTN_7RwEJXeKdhl", - "identification": false, - "relationshipType": 16, - "startRelationshipType": 2, - "start": { - "tableId": "IsMoJXzvtuoOFFt93qS0w", - "columnIds": [ - "sVypeCGZk-JXvsbwc93Rw" - ], - "x": 1696.4192, - "y": 1116.281, - "direction": 1 - }, - "end": { - "tableId": "B8haiEbPc1lRBWTv1g25G", - "columnIds": [ - "AU5HgX9gt97EPfq5SoKnd" - ], - "x": 1457.1138999999998, - "y": 1115.9058, - "direction": 2 - }, - "meta": { - "updateAt": 1750898732189, - "createAt": 1750898732189 - } - }, "Y-MNlBi4tzmX_zwrY0zTc": { "id": "Y-MNlBi4tzmX_zwrY0zTc", "identification": false, diff --git a/app/Helpers/Equipment/Part/DomainHelper.php b/app/Helpers/Equipment/Part/DomainHelper.php index 8d59662..f45e2ef 100644 --- a/app/Helpers/Equipment/Part/DomainHelper.php +++ b/app/Helpers/Equipment/Part/DomainHelper.php @@ -19,7 +19,7 @@ class DomainHelper extends PartHelper } switch ($field) { case 'domain': - $form = form_input($field, "", ["placeholder" => "예)domain.co.kr", ...$extras]); + $form = form_input($field, "", ['id' => $field, "placeholder" => "예)domain.co.kr", ...$extras]); $form .= "
"; break; default: diff --git a/app/Language/en/Equipment/Part/Domain.php b/app/Language/en/Equipment/Part/Domain.php index fd1a68b..3020f2c 100644 --- a/app/Language/en/Equipment/Part/Domain.php +++ b/app/Language/en/Equipment/Part/Domain.php @@ -2,7 +2,6 @@ return [ 'title' => "Domain정보", 'label' => [ - 'clientinfo_uid' => "고객명", 'domain' => "도메인", 'expired_at' => "종료일", 'price' => "금액", diff --git a/app/Models/Equipment/Part/DomainModel.php b/app/Models/Equipment/Part/DomainModel.php index 4aefb0d..da47962 100644 --- a/app/Models/Equipment/Part/DomainModel.php +++ b/app/Models/Equipment/Part/DomainModel.php @@ -13,7 +13,6 @@ class DomainModel extends PartModel protected $primaryKey = self::PK; protected $returnType = DomainEntity::class; protected $allowedFields = [ - 'clientinfo_uid', "domain", "status", "updated_at" @@ -28,9 +27,6 @@ class DomainModel extends PartModel throw new \Exception(__FUNCTION__ . "=> field가 array 입니다.\n" . var_export($field, true)); } switch ($field) { - case "clientinfo_uid": - $rule = "required|numeric"; - break; case "domain": $rule = "required|trim|valid_domain"; $rule .= in_array($action, ["create", "create_form"]) ? "|is_unique[{$this->table}.{$field}]" : ""; diff --git a/app/Services/Equipment/Part/DomainService.php b/app/Services/Equipment/Part/DomainService.php index 4ffbda8..5c65815 100644 --- a/app/Services/Equipment/Part/DomainService.php +++ b/app/Services/Equipment/Part/DomainService.php @@ -23,14 +23,13 @@ class DomainService extends PartService public function getFormFields(): array { return [ - "clientinfo_uid", "domain", "status", ]; } public function getFilterFields(): array { - return ["clientinfo_uid", 'status',]; + return ['status',]; } public function getBatchJobFields(): array { @@ -39,6 +38,6 @@ class DomainService extends PartService public function getIndexFields(): array { - return ['clientinfo_uid', 'domain', 'status']; + return ['domain', 'status']; } } diff --git a/app/Views/admin/domain/view.php b/app/Views/admin/domain/view.php new file mode 100644 index 0000000..05872aa --- /dev/null +++ b/app/Views/admin/domain/view.php @@ -0,0 +1,20 @@ +extend(LAYOUTS[$viewDatas['layout']]['path']) ?> +section('content') ?> +alert($error) ?> +
+ +
+ + + + + + + + + + +
getFieldLabel($field, lang("{$viewDatas['class_path']}.label.{$field}"), $viewDatas) ?>getFieldView($field, $viewDatas['entity']->$field, $viewDatas) ?>
+
+
+endSection() ?> \ No newline at end of file diff --git a/app/Views/layouts/admin.php b/app/Views/layouts/admin.php index b2d1dc5..075a89d 100644 --- a/app/Views/layouts/admin.php +++ b/app/Views/layouts/admin.php @@ -3,9 +3,15 @@ <?= LAYOUTS[$viewDatas['layout']]['title'] ?> - - - + + + + + + + + + diff --git a/app/Views/templates/admin/form_content_top.php b/app/Views/templates/admin/form_content_top.php index d93f8c7..7bdf59d 100644 --- a/app/Views/templates/admin/form_content_top.php +++ b/app/Views/templates/admin/form_content_top.php @@ -1,49 +1,2 @@ - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/public/js/admin/form.js b/public/js/admin/form.js index c2bb879..8f36ad0 100644 --- a/public/js/admin/form.js +++ b/public/js/admin/form.js @@ -31,4 +31,35 @@ document.addEventListener('DOMContentLoaded', function() { dropdownAutoWidth: true }); } + if (document.querySelector('#domain')) { + const domainSelecor = document.querySelector('#domain') + const errorBox = document.getElementById('domain-errors'); + + const tagify = new Tagify(domainSelecor, { + enforceWhitelist: false, + whitelist: [], + duplicates: false, + delimiters: ", ", + pattern: /[a-zA-Z0-9\.\/\?\:@\-_=#]+\.([a-zA-Z0-9\&\.\/\?\:@\-_=#])*/ // 도메인주소 패턴 + }); + // ✅ 패턴이 맞지 않을 때 + tagify.on('invalid', e => { + const value = e.detail.data.value; + errorBox.innerText = `"${value}" 은(는) 유효한 도메인 형식이 아니거나 중복됩니다. 예: domain.co.kr`; + }); + // ✅ 서버에서 존재 여부 확인 + tagify.on('add', async e => { + const domain = e.detail.data.value; + const res = await fetch('/admin/equipment/part/domain/confirm', { + method: 'POST', + headers: {'Content-Type': 'application/json'}, + body: JSON.stringify({domain}) + }); + const results = await res.json(); + if (exists = results.exists === true || results.exists === 'true') { + tagify.removeTag(domain); // 이미 존재하는 도메인 제거 + errorBox.innerText = results.message; + } + }); + } }); \ No newline at end of file