删除部分日志

This commit is contained in:
Yutousama 2022-04-11 12:21:10 +08:00
parent 00c049573e
commit d59e806630
2 changed files with 0 additions and 2 deletions

View File

@ -331,7 +331,6 @@ public class Live implements ApplicationContextAware {
public void checkLive() { public void checkLive() {
boolean isLive = LiveUtils.isLivePlayer(roomId); boolean isLive = LiveUtils.isLivePlayer(roomId);
upData.setLive(isLive ? 1 : 0); upData.setLive(isLive ? 1 : 0);
System.out.println(roomId+"直播状态="+isLive);
if(SaveLive.getInstance().checkLive(roomId)){ if(SaveLive.getInstance().checkLive(roomId)){
return; return;
} }

View File

@ -98,7 +98,6 @@ public class ApplicationInit implements ApplicationRunner {
if (info.getOfflinelistening() == 1) { if (info.getOfflinelistening() == 1) {
if (info.getEnable() == 1) { if (info.getEnable() == 1) {
Live live = LiveUtils.liveContains(info); Live live = LiveUtils.liveContains(info);
System.out.println("扫描:"+info.getName()+" 结果:"+(live==null));
if (live == null) { if (live == null) {
live = new Live(); live = new Live();
live.add(info.getRoomid(), !StringUtils.isEmpty(AppTools.readFile(new File("cookies.json")))); live.add(info.getRoomid(), !StringUtils.isEmpty(AppTools.readFile(new File("cookies.json"))));