删除无用日志

back_recharge
lvxinran 2021-01-06 14:48:04 +08:00
parent 34d1ce106e
commit 03e86acfbe
3 changed files with 0 additions and 9 deletions

View File

@ -40,9 +40,7 @@ public class HotfixUtil implements IEventHandler {
@Override
public void onEvent(IEvent event) throws Exception {
LOGGER.info("Task1 start");
doWork(SysUtil.getPath("conf/hotfix.json"));
LOGGER.info("Task1 end");
}
private void doWork(String pathName){

View File

@ -74,7 +74,6 @@ public class GlobleSystemLogic implements IEventHandler {
@Override
public void onEvent(IEvent event) throws Exception {
LOGGER.info("Task3 start");
if (event instanceof MinuteTaskEvent) {
try {
SGodSacrificeSetting sGodSacrificeSetting = STableManager.getConfig(SGodSacrificeSetting.class).get(1);
@ -128,7 +127,6 @@ public class GlobleSystemLogic implements IEventHandler {
LOGGER.error("Exception::=>{}", e.toString());
}
}
LOGGER.info("task3 end");
}

View File

@ -127,10 +127,8 @@ public class ActivityLogic implements IEventHandler{
}
public void checkActiviyStatus() throws Exception {
LOGGER.info("Task2 start");
long now = System.currentTimeMillis();
LOGGER.info("minute 活动1");
Map<Integer, SGlobalActivity> sGlobalActivityMap = SGlobalActivity.getsGlobalActivityMap();
//检查开启的活动 非相对创角时间
@ -184,7 +182,6 @@ public class ActivityLogic implements IEventHandler{
abstractActivity.onActivityStart();
openActivityIds.add(sGlobalActivity.getId());
}
LOGGER.info("minute 活动2");
//活动数据处理分发到角色线程
InnerMessageUtil.broadcastWithRandom(user1 -> {
if(user1==null){
@ -223,9 +220,7 @@ public class ActivityLogic implements IEventHandler{
MissionEventDistributor.requestEnd(session,true);
}, new LinkedList<>(OnlineUserManager.sessionMap.keySet()),5);
LOGGER.info("task2 end");
}
public void newPlayerOpenActivityMission(User user) throws Exception {
checkActivityOfUser(user, null);
ISession session = OnlineUserManager.getSessionByUid(user.getId());