shish 8 месяцев назад
Родитель
Сommit
4bb3608f72
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      common/components/rabbitmq/consumer/notifyConsumer.php

+ 1 - 0
common/components/rabbitmq/consumer/notifyConsumer.php

@@ -32,6 +32,7 @@ class notifyConsumer implements ConsumerInterface
                 Yii::error("Invalid notify message format: {$msg->body}", 'rabbitmq.notify');
                 return ConsumerInterface::MSG_REJECT;
             }
+            Yii::info("Processing notify message: " . json_encode($data));
             Yii::info("Processing notify message: " . json_encode($data), 'rabbitmq.notify');
             // 根据通知类型分发处理
             $type = $data['type'] ?? null;