mirror of
https://github.com/apache/rocketmq-dashboard.git
synced 2025-09-10 19:48:29 +08:00
Fix too much warn log because non-exist retry topic (#681)
Co-authored-by: zhangxu16 <zhangxu16@xiaomi.com>
This commit is contained in:
@@ -95,7 +95,7 @@ public class ConsumerServiceImpl extends AbstractCommonService implements Consum
|
||||
consumeStats = mqAdminExt.examineConsumeStats(consumerGroup);
|
||||
}
|
||||
catch (Exception e) {
|
||||
logger.warn("examineConsumeStats exception, " + consumerGroup, e);
|
||||
logger.warn("examineConsumeStats exception to consumerGroup {}, response [{}]", consumerGroup, e.getMessage());
|
||||
}
|
||||
|
||||
ConsumerConnection consumerConnection = null;
|
||||
@@ -103,7 +103,7 @@ public class ConsumerServiceImpl extends AbstractCommonService implements Consum
|
||||
consumerConnection = mqAdminExt.examineConsumerConnectionInfo(consumerGroup);
|
||||
}
|
||||
catch (Exception e) {
|
||||
logger.warn("examineConsumerConnectionInfo exception, " + consumerGroup, e);
|
||||
logger.warn("examineConsumeStats exception to consumerGroup {}, response [{}]", consumerGroup, e.getMessage());
|
||||
}
|
||||
|
||||
groupConsumeInfo.setGroup(consumerGroup);
|
||||
|
Reference in New Issue
Block a user