@@ -307,6 +307,7 @@ public class CoreServiceImpl implements CoreService {
try {
// 超过 5 分钟没有数据,销毁当前线程
MatchContent matchContent = matchQueue.poll(5, TimeUnit.MINUTES); // 等待最多 5 分钟
+ log.info("matchContent={}", matchContent);
if (matchContent == null) {
break; // 退出当前线程
}