|
|
@@ -837,7 +837,11 @@ class IssueService extends BaseService
|
|
|
$key = 'lottery_numbers_' . $v->issue_no;
|
|
|
$combo = implode(' ', $combo);
|
|
|
if (Cache::add($key, $winning_numbers, 100)) {
|
|
|
- self::lotteryDraw($v->id, $winning_numbers, $combo, '');
|
|
|
+ $res = self::lotteryDraw($v->id, $winning_numbers, $combo, '');
|
|
|
+ if ($res['code'] == self::NOT) {
|
|
|
+ Log::error("开奖失败:{$v->issue_no} {$res['meg']} ");
|
|
|
+ }
|
|
|
+
|
|
|
$new = false;
|
|
|
}
|
|
|
|