src/main/java/cc/mrbird/febs/rabbit/consumer/AgentConsumer.java
@@ -45,11 +45,11 @@ @RabbitListener(queues = QueueConstants.AGENT_AUTO_LEVEL_UP) public void agentAutoLevelUp(String id) { log.info("收到代理自动升级消息:{}", id); log.info("收到合伙人自动升级消息:{}", id); try { agentService.autoUpAgentLevel(Long.parseLong(id)); } catch (Exception e) { log.error("代理自动升级异常", e); log.error("合伙人自动升级异常", e); } }