Browse Source

dev refresh msg

stanley-king 3 years ago
parent
commit
6359678b64
1 changed files with 4 additions and 0 deletions
  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]));
         }