info('KPI 알림 체크 시작...'); $result = $service->checkKpiAlerts(); $this->info("알림 생성: {$result['alerts_created']}건"); if (! empty($result['errors'])) { $this->warn('오류 발생:'); foreach ($result['errors'] as $error) { $this->error(" - {$error}"); } } $this->info('KPI 알림 체크 완료.'); return empty($result['errors']) ? self::SUCCESS : self::FAILURE; } }