From a4c30bf581393a0556f69b20464bfd1d06f6936c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Tue, 16 Mar 2021 17:10:36 +0800 Subject: [PATCH] Update RebateCurrentService.php --- app/data/service/RebateCurrentService.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/data/service/RebateCurrentService.php b/app/data/service/RebateCurrentService.php index 177c633e5..7c8aba1f6 100644 --- a/app/data/service/RebateCurrentService.php +++ b/app/data/service/RebateCurrentService.php @@ -144,6 +144,7 @@ class RebateCurrentService extends Service // 批量发放配置奖励 foreach (self::PRIZES as $vo) { if (method_exists($this, $vo['func'])) { + $this->app->log->notice("订单{$orderNo}发放{$vo['func']}奖励"); $this->{$vo['func']}(); } }