浏览代码

dev refresh msg

stanley-king 3 年之前
父节点
当前提交
6359678b64
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      helper/message/publisher.php

+ 4 - 0
helper/message/publisher.php

@@ -215,6 +215,7 @@ class publisher
 
     public function del_special($user,$specials)
     {
+        Log::record(__METHOD__,Log::DEBUG);
         if($this->mConnected)
         {
             $user = intval($user);
@@ -224,6 +225,7 @@ class publisher
 
     public function modify_refill_channel()
     {
+        Log::record(__METHOD__,Log::DEBUG);
         if($this->mConnected) {
             $this->mRedis->publish('refill',json_encode(['type'=>'channel','value' => 0]));
         }
@@ -231,12 +233,14 @@ class publisher
 
     public function modify_refill_merchant()
     {
+        Log::record(__METHOD__,Log::DEBUG);
         if($this->mConnected) {
             $this->mRedis->publish('refill',json_encode(['type'=>'merchant','value' => 0]));
         }
     }
     public function modify_refill_ratio()
     {
+        Log::record(__METHOD__,Log::DEBUG);
         if($this->mConnected) {
             $this->mRedis->publish('refill',json_encode(['type'=>'ratio','value' => 0]));
         }