|
@@ -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]));
|
|
|
}
|