优化:取消部分日志记录
This commit is contained in:
parent
32ba4b1eef
commit
c5ca701d0f
|
|
@ -20,7 +20,7 @@ class CommissionPartnerSettlementJob implements JobInterface{
|
|||
|
||||
public function fire($job,$data){
|
||||
try{
|
||||
Log::info('合伙人佣金结算 - 开始处理: '.var_export($data,1));
|
||||
// Log::info('合伙人佣金结算 - 开始处理: '.var_export($data,1));
|
||||
// 获取全部佣金结算记录
|
||||
$cycleInfo = app()->make(PartnerSettlementCycleRepository::class)
|
||||
->getSearch([])
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ class ComputeIntegralJob implements JobInterface{
|
|||
// 判断:当前data不为数组时 强制为数组
|
||||
if(!is_array($data)) $data = [];
|
||||
// 记录日志 并且开启处理
|
||||
Log::info("全平台豆豆计算 - 开始处理: ".var_export($data,1));
|
||||
// Log::info("全平台豆豆计算 - 开始处理: ".var_export($data,1));
|
||||
$page = $data['page'] ?? 0;
|
||||
$ids = $data['ids'] ?? [];
|
||||
$limit = 1000;
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ class SparateLegumesJob implements JobInterface{
|
|||
|
||||
public function fire($job,$data){
|
||||
try{
|
||||
Log::info('给本周期内消费者分豆豆 - 开始处理: '.var_export($data,1));
|
||||
// Log::info('给本周期内消费者分豆豆 - 开始处理: '.var_export($data,1));
|
||||
// 获取周期信息
|
||||
$cycleLegumes = app()->make(LegumesRepository::class)->getLegumes($data['legumes_id']);
|
||||
if(!$cycleLegumes) throw new \Exception('信息不存在');
|
||||
|
|
|
|||
Loading…
Reference in New Issue