diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml new file mode 100644 index 0000000..7e340a7 --- /dev/null +++ b/.idea/kotlinc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/game_web/web_group/.idea/kotlinc.xml b/game_web/web_group/.idea/kotlinc.xml new file mode 100644 index 0000000..7e340a7 --- /dev/null +++ b/game_web/web_group/.idea/kotlinc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/game_web/web_group/src/main/java/com/group/MainServer.java b/game_web/web_group/src/main/java/com/group/MainServer.java index ccefa6e..ba5883f 100644 --- a/game_web/web_group/src/main/java/com/group/MainServer.java +++ b/game_web/web_group/src/main/java/com/group/MainServer.java @@ -26,6 +26,7 @@ import org.quartz.SchedulerFactory; import org.quartz.impl.StdSchedulerFactory; import redis.clients.jedis.Jedis; import taurus.client.NetManager; +import taurus.newRobot.AddRoomRobot; import static org.quartz.CronScheduleBuilder.cronSchedule; import static org.quartz.JobBuilder.newJob; @@ -128,8 +129,10 @@ public class MainServer extends Extension { // QingChu qingChu = new QingChu(); // qingChu.qingchu(); - DoTest doTe = new DoTest(); - doTe.doTest(); + //DoTest doTe = new DoTest(); + //doTe.doTest(); + AddRoomRobot addRoomRobot = new AddRoomRobot(); + addRoomRobot.addRoom(); // System.out.println("机器人返回结果: " + s); } catch (Exception e) { diff --git a/game_web/web_group/src/main/java/com/group/job/UpdatePlayRoomJob.java b/game_web/web_group/src/main/java/com/group/job/UpdatePlayRoomJob.java index 8930052..a12d16b 100644 --- a/game_web/web_group/src/main/java/com/group/job/UpdatePlayRoomJob.java +++ b/game_web/web_group/src/main/java/com/group/job/UpdatePlayRoomJob.java @@ -80,13 +80,17 @@ public class UpdatePlayRoomJob implements Job{ int min_value = pid * 10000; int max_value = pid * 10000 + 9999; String grooms_key = GroupCache.genRoomsKey(groupId); + rooms = jedis.zrevrangeByScore(grooms_key, max_value, min_value); + int room_size =0; for (String room : rooms) { List room_list = Redis.use("group1_db0").hmget(room, "fake", "status", "round", "id", "times", "players"); - + //获取气氛卓 String fake_json = room_list.get(0); if (fake_json == null) { continue; + }else{ + room_size++; } String status = room_list.get(1); @@ -94,17 +98,18 @@ public class UpdatePlayRoomJob implements Job{ continue; } + String strRound = room_list.get(2); if (StringUtil.isEmpty(strRound)) { continue; } - int round = Integer.parseInt(strRound); + + int round = Integer.parseInt(strRound); String roomId = room_list.get(3); if (StringUtil.isEmpty(roomId)) { continue; } - if (round == 0) { roomUpdateEvent(room, groupId, roomId); round++; @@ -112,11 +117,12 @@ public class UpdatePlayRoomJob implements Job{ } } - if (rooms.size() >= gpb.robot_room || rooms.size() >= 20) + if (room_size >= gpb.robot_room || rooms.size() >= 20) { continue; } + String exist = Redis.use("group1_db1").get("robot_exist"); if (StringUtil.isNotEmpty(exist)) { @@ -218,6 +224,19 @@ public class UpdatePlayRoomJob implements Job{ long time = System.currentTimeMillis() / 1000; for (String room : rooms) { List room_list = Redis.use("group1_db0").hmget(room, "fake", "status", "round", "id", "times", "players", "create_time", "fake_existTime"); + String roomId = room_list.get(3); + ITArray players = TArray.newFromJsonData(room_list.get(5)); + + if(players.size()==0) { + //清理空桌 + GroupPublisherService.delRoomEvt(groupId, roomId); + jedis.zrem(grooms_key, room); + Redis.use().hset(room, "status", 3 + ""); + Redis.use().hincrBy(room, "cache_ver", 1); + Redis.use().expire(room, 20); + logger.error("del 空 room:" + roomId + " player:"+room_list.get(5) + " fake_json:"); + continue; + } String fake_json = room_list.get(0); if (fake_json == null) @@ -236,7 +255,7 @@ public class UpdatePlayRoomJob implements Job{ } int round = Integer.parseInt(strRound); - String roomId = room_list.get(3); + if(StringUtil.isEmpty(roomId)) { continue; } @@ -246,6 +265,9 @@ public class UpdatePlayRoomJob implements Job{ continue; } + + + int maxRound = Integer.parseInt(maxStrRound); if (round == 0) { roomUpdateEvent(room, groupId, roomId); @@ -270,7 +292,8 @@ public class UpdatePlayRoomJob implements Job{ } boolean exitGame = false; - ITArray players = TArray.newFromJsonData(room_list.get(5)); + + if (round >= 1) { int fake_hp = (int)(Math.random() * 100000); @@ -320,6 +343,8 @@ public class UpdatePlayRoomJob implements Job{ Redis.use("group1_db1").srem("used_robot", Integer.toString(player_id)); Redis.use("group1_db1").sadd("free_robot", Integer.toString(player_id)); } + + //清空桌子 GroupPublisherService.delRoomEvt(groupId, roomId); jedis.zrem(grooms_key, room); Redis.use().hset(room, "status", 3 + ""); @@ -433,6 +458,7 @@ public class UpdatePlayRoomJob implements Job{ Redis.use("group1_db11").zadd(grooms_key, pid*10000+1101, room_key); GroupPublisherService.addRoomEvt(groupId, newRoomId); updateRedisMap(groupId, newRoomId, room_key, roomMap, maxPlayers); + return room_key; } return null; @@ -830,6 +856,7 @@ public class UpdatePlayRoomJob implements Job{ userData.putUtfString("password", Utils.getMD5Hash(password)); long reg_time = System.currentTimeMillis() / 1000; userData.putLong("reg_time", reg_time); + userData.putInt("jiqiren",0); logger.info("create robot account:"+userData.toJson()+" password:" + password); int result = DataBase.use().insert("account", userData); if (result == -1) { diff --git a/game_web/web_group/src/main/webapp/logs/web_main.log b/game_web/web_group/src/main/webapp/logs/web_main.log index d77cc18..2ec5374 100644 --- a/game_web/web_group/src/main/webapp/logs/web_main.log +++ b/game_web/web_group/src/main/webapp/logs/web_main.log @@ -1,7 +1,16 @@ -24 一月 2026 | 18:14:17,001 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -24 一月 2026 | 18:14:17,049 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -24 一月 2026 | 18:14:18,098 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:14:20,752 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +30 一月 2026 | 17:26:29,970 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 17:26:30,084 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 17:26:33,287 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 17:26:33,749 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +30 一月 2026 | 17:26:35,018 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2393ms +30 一月 2026 | 17:26:36,669 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:646547 player:[551902,460542] fake_json:1 +30 一月 2026 | 17:26:38,451 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +30 一月 2026 | 17:26:38,895 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:589801 player:[821735,424127] fake_json:1 +30 一月 2026 | 17:26:39,266 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2121ms +30 一月 2026 | 17:26:40,133 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:589801 player:[821735,424127] fake_json:1 +30 一月 2026 | 17:26:41,892 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 17:26:42,542 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 +30 一月 2026 | 17:26:42,774 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error java.net.ConnectException: Connection refused: connect at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) @@ -15,9 +24,27 @@ java.net.ConnectException: Connection refused: connect at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:14:20,766 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect -24 一月 2026 | 18:14:43,201 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:14:45,912 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +30 一月 2026 | 17:26:42,778 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +30 一月 2026 | 17:26:44,449 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:708758 +30 一月 2026 | 17:26:44,494 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 17:26:44,750 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 17:26:44,909 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 17:26:44,909 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 17:26:44,909 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 17:26:45,360 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 17:26:45,510 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 17:26:45,578 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 17:26:45,578 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:18732000 +30 一月 2026 | 17:26:45,579 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 17:26:45,579 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 17:26:45,798 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 17:26:46,349 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@561fcb5d +30 一月 2026 | 17:26:46,690 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 17:26:46,871 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 17:26:48,751 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:854154 player:[407896,946610] fake_json:1 +30 一月 2026 | 17:27:00,237 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +30 一月 2026 | 17:27:06,407 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 17:27:07,131 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error java.net.ConnectException: Connection refused: connect at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) @@ -31,9 +58,1118 @@ java.net.ConnectException: Connection refused: connect at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:14:45,928 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect -24 一月 2026 | 18:15:07,977 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:15:10,466 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +30 一月 2026 | 17:27:07,135 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +30 一月 2026 | 17:27:07,191 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101666 login +30 一月 2026 | 17:27:07,246 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 +30 一月 2026 | 17:27:08,099 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2270ms +30 一月 2026 | 17:27:11,387 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 17:27:11,775 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101666 +30 一月 2026 | 17:27:13,173 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2159ms +30 一月 2026 | 17:27:14,707 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:708758 +30 一月 2026 | 17:27:14,767 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 17:27:14,934 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 17:27:15,053 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 17:27:15,053 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 17:27:15,053 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 17:27:15,748 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 17:27:15,894 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 17:27:15,931 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 17:27:15,931 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8923000 +30 一月 2026 | 17:27:15,931 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 17:27:15,931 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 17:27:16,097 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 17:27:16,392 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3fb76f31 +30 一月 2026 | 17:27:16,729 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 17:27:16,894 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 17:27:26,327 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:351414 player:[424127,443232] fake_json:1 +30 一月 2026 | 17:27:47,159 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:800819 player:[323800,158894] fake_json:1 +30 一月 2026 | 17:28:20,629 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:182699 player:[412118,592635] fake_json:1 +30 一月 2026 | 17:28:50,993 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:890748 player:[762687,374446] fake_json:1 +30 一月 2026 | 17:28:52,977 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:618214 player:[924063,508402] fake_json:1 +30 一月 2026 | 17:29:01,135 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:521291 player:[821735,680619] fake_json:1 +30 一月 2026 | 17:29:06,095 | INFO | qtp809762318-83 | taurus.web.WebFilter | | action: join_room[{user}:177475] time:8646ms +30 一月 2026 | 17:29:41,480 | INFO | qtp809762318-63 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 17:29:41,636 | ERROR | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | del robot room:216463 player:[948059,400967] fake_json:1 +30 一月 2026 | 17:29:42,348 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 17:29:43,247 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2955ms +30 一月 2026 | 17:29:44,567 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:3190ms +30 一月 2026 | 17:29:49,195 | INFO | qtp809762318-77 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2257ms +30 一月 2026 | 17:29:57,852 | INFO | qtp809762318-63 | group.controller.GroupRoomController | | matchRoom() ==> pid = 11 +30 一月 2026 | 17:30:02,577 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:6517ms +30 一月 2026 | 17:30:19,934 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:548293 player:[829427,592635] fake_json:1 +30 一月 2026 | 17:30:22,233 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:367166 player:[750455,848960] fake_json:1 +30 一月 2026 | 17:30:28,824 | INFO | qtp809762318-63 | group.controller.GroupRoomController | | matchRoom() ==> pid = 11 +30 一月 2026 | 17:30:33,256 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:5700ms +30 一月 2026 | 17:30:43,093 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: del__room[{user}:112233] time:1570ms +30 一月 2026 | 17:30:50,176 | INFO | qtp809762318-63 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 17:30:51,191 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1711ms +30 一月 2026 | 17:30:51,407 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 17:30:52,661 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1932ms +30 一月 2026 | 17:30:55,976 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2050ms +30 一月 2026 | 17:31:23,295 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:651411 player:[400967,371993] fake_json:1 +30 一月 2026 | 17:31:25,377 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:419571 player:[829427,897609] fake_json:1 +30 一月 2026 | 17:31:58,477 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:777304 player:[708298,592635] fake_json:1 +30 一月 2026 | 17:32:31,554 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:960419 player:[981110,746710] fake_json:1 +30 一月 2026 | 17:32:34,114 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:459061 player:[400967,268636] fake_json:1 +30 一月 2026 | 17:32:36,274 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:769582 player:[962304,680619] fake_json:1 +30 一月 2026 | 17:32:36,394 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:769582 player:[962304,680619] fake_json:1 +30 一月 2026 | 17:33:03,672 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:917563 player:[864120,592635] fake_json:1 +30 一月 2026 | 17:33:22,035 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:397006 player:[962304,848960] fake_json:1 +30 一月 2026 | 17:33:22,358 | ERROR | DefaultQuartzScheduler_Worker-9 | group.job.UpdatePlayRoomJob | | del robot room:397006 player:[962304,848960] fake_json:1 +30 一月 2026 | 17:33:45,395 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:995431 player:[726667,268636] fake_json:1 +30 一月 2026 | 17:33:47,462 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:168435 player:[774381,821735] fake_json:1 +30 一月 2026 | 17:33:58,260 | ERROR | DefaultQuartzScheduler_Worker-7 | group.job.UpdatePlayRoomJob | | del robot room:818136 player:[374446,424127] fake_json:1 +30 一月 2026 | 17:34:33,825 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:292563 player:[829427,962304] fake_json:1 +30 一月 2026 | 17:34:54,023 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 17:34:54,069 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 17:34:59,566 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:536006 player:[268636,750455] fake_json:1 +30 一月 2026 | 17:35:01,594 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:262842 player:[508402,948059] fake_json:1 +30 一月 2026 | 17:35:38,994 | ERROR | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | del robot room:197112 player:[540812,918233] fake_json:1 +30 一月 2026 | 17:36:08,597 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:739525 player:[615558,864120] fake_json:1 +30 一月 2026 | 17:36:11,050 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:312164 player:[981110,826893] fake_json:1 +30 一月 2026 | 17:36:14,615 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:540812 player:[750455,829427] fake_json:1 +30 一月 2026 | 17:36:27,682 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 17:36:27,728 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 17:36:37,931 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:207050 player:[946610,948059] fake_json:1 +30 一月 2026 | 17:37:13,418 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:754709 player:[762687,981110] fake_json:1 +30 一月 2026 | 17:37:15,896 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:338956 player:[615558,962304] fake_json:1 +30 一月 2026 | 17:37:29,137 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:195574 player:[592635,826893] fake_json:1 +30 一月 2026 | 17:37:57,358 | ERROR | DefaultQuartzScheduler_Worker-9 | group.job.UpdatePlayRoomJob | | del robot room:218199 player:[412118,323800] fake_json:1 +30 一月 2026 | 17:37:58,487 | ERROR | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | del robot room:218199 player:[412118,323800] fake_json:1 +30 一月 2026 | 17:38:14,088 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:753103 player:[508402,750455] fake_json:1 +30 一月 2026 | 17:38:16,258 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:416598 player:[424127,992762] fake_json:1 +30 一月 2026 | 17:38:28,793 | ERROR | DefaultQuartzScheduler_Worker-7 | group.job.UpdatePlayRoomJob | | del robot room:640745 player:[605025,962304] fake_json:1 +30 一月 2026 | 17:38:36,815 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 17:38:36,861 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 17:38:45,124 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 17:38:46,190 | INFO | qtp809762318-68 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 17:38:46,638 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2193ms +30 一月 2026 | 17:38:47,257 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1666ms +30 一月 2026 | 17:38:50,664 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1908ms +30 一月 2026 | 17:38:53,757 | ERROR | DefaultQuartzScheduler_Worker-7 | group.job.UpdatePlayRoomJob | | del robot room:633070 player:[508402,981110] fake_json:1 +30 一月 2026 | 17:39:19,462 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:416506 player:[948059,864120] fake_json:1 +30 一月 2026 | 17:39:22,981 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:114976 player:[918233,829427] fake_json:1 +30 一月 2026 | 17:39:23,681 | ERROR | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | del robot room:114976 player:[918233,829427] fake_json:1 +30 一月 2026 | 17:39:29,047 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 17:39:29,093 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 17:40:08,824 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 17:40:10,000 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1909ms +30 一月 2026 | 17:40:10,379 | INFO | qtp809762318-63 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 17:40:11,425 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1694ms +30 一月 2026 | 17:40:14,179 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1534ms +30 一月 2026 | 17:40:56,068 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 17:40:57,258 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1746ms +30 一月 2026 | 17:40:57,708 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1536ms +30 一月 2026 | 17:41:05,318 | INFO | qtp809762318-69 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 17:41:06,340 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1887ms +30 一月 2026 | 17:41:06,766 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1569ms +30 一月 2026 | 17:41:21,267 | INFO | qtp809762318-67 | group.controller.GroupRoomController | | matchRoom() ==> pid = 11 +30 一月 2026 | 17:41:27,172 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:6951ms +30 一月 2026 | 17:41:27,236 | INFO | qtp809762318-69 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 17:41:28,286 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1692ms +30 一月 2026 | 17:41:33,031 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1774ms +30 一月 2026 | 17:41:35,638 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:588833 player:[615558,774381] fake_json:1 +30 一月 2026 | 17:42:06,955 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: join_room[{user}:115777] time:6599ms +30 一月 2026 | 17:42:26,113 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 17:42:27,624 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2053ms +30 一月 2026 | 17:42:28,073 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1746ms +30 一月 2026 | 17:42:54,059 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 17:42:55,431 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2127ms +30 一月 2026 | 17:42:56,012 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1971ms +30 一月 2026 | 17:43:15,493 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: join_room[{user}:115777] time:6980ms +30 一月 2026 | 17:43:24,552 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 17:43:25,834 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1801ms +30 一月 2026 | 17:43:26,555 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1837ms +30 一月 2026 | 17:43:56,161 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: join_room[{user}:115777] time:6838ms +30 一月 2026 | 17:44:28,678 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:593388 player:[946610,551902] fake_json:1 +30 一月 2026 | 17:44:31,534 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: join_room[{user}:115777] time:1710ms +30 一月 2026 | 17:44:34,657 | INFO | qtp809762318-69 | group.controller.GroupRoomController | | matchRoom() ==> pid = 11 +30 一月 2026 | 17:44:39,855 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: match_room[{user}:115777] time:6491ms +30 一月 2026 | 17:45:28,606 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:200265 player:[400967,158894] fake_json:1 +30 一月 2026 | 17:46:08,279 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 17:46:08,324 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 17:46:10,396 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 17:46:12,140 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2523ms +30 一月 2026 | 17:46:15,213 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 17:46:16,297 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1620ms +30 一月 2026 | 17:46:21,476 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2098ms +30 一月 2026 | 17:46:31,377 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: join_room[{user}:177475] time:1396ms +30 一月 2026 | 17:46:35,614 | INFO | qtp809762318-67 | group.controller.GroupRoomController | | matchRoom() ==> pid = 11 +30 一月 2026 | 17:46:41,001 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: match_room[{user}:177475] time:6706ms +30 一月 2026 | 17:46:57,058 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: join_room[{user}:115777] time:1514ms +30 一月 2026 | 17:47:01,496 | INFO | qtp809762318-65 | group.controller.GroupRoomController | | matchRoom() ==> pid = 11 +30 一月 2026 | 17:47:05,506 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 17:47:06,759 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1966ms +30 一月 2026 | 17:47:07,260 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1892ms +30 一月 2026 | 17:47:08,921 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: match_room[{user}:115777] time:8481ms +30 一月 2026 | 17:47:13,417 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: del__room[{user}:112233] time:1392ms +30 一月 2026 | 17:47:16,136 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:517718 player:[680619,424127] fake_json:1 +30 一月 2026 | 17:47:18,576 | INFO | qtp809762318-62 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 17:47:18,984 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:555298 player:[540812,918233] fake_json:1 +30 一月 2026 | 17:47:19,517 | INFO | qtp809762318-63 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 17:47:19,898 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2009ms +30 一月 2026 | 17:47:20,741 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1896ms +30 一月 2026 | 17:47:20,971 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:535124 player:[821735,592635] fake_json:1 +30 一月 2026 | 17:47:21,053 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:535124 player:[821735,592635] fake_json:1 +30 一月 2026 | 17:47:22,831 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:155488 player:[746710,992762] fake_json:1 +30 一月 2026 | 17:47:22,975 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:155488 player:[746710,992762] fake_json:1 +30 一月 2026 | 17:47:23,638 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1607ms +30 一月 2026 | 17:47:32,796 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: join_room[{user}:177475] time:6768ms +30 一月 2026 | 17:47:42,653 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 17:47:43,499 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 17:47:43,896 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1952ms +30 一月 2026 | 17:47:44,678 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1836ms +30 一月 2026 | 17:47:47,316 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1751ms +30 一月 2026 | 17:48:25,661 | ERROR | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | del robot room:417138 player:[950914,829427] fake_json:1 +30 一月 2026 | 17:48:47,804 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 17:48:47,864 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 17:48:56,358 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 17:48:57,743 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1894ms +30 一月 2026 | 17:48:58,073 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1686ms +30 一月 2026 | 17:49:09,312 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:478137 player:[726667,407896] fake_json:1 +30 一月 2026 | 17:49:19,049 | INFO | qtp809762318-68 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 17:49:20,208 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1600ms +30 一月 2026 | 17:49:20,947 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1745ms +30 一月 2026 | 17:49:23,005 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:929576 player:[605025,774381] fake_json:1 +30 一月 2026 | 17:50:25,680 | ERROR | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | del robot room:767838 player:[826893,821735] fake_json:1 +30 一月 2026 | 17:50:38,851 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 17:50:40,579 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2366ms +30 一月 2026 | 17:50:40,884 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2042ms +30 一月 2026 | 17:51:12,706 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:387529 player:[897609,158894] fake_json:1 +30 一月 2026 | 17:51:23,818 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:322816 player:[864120,950914] fake_json:1 +30 一月 2026 | 17:52:29,459 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 17:52:29,514 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 17:52:38,188 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:843458 player:[950914,946610] fake_json:1 +30 一月 2026 | 17:52:57,959 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 17:52:58,011 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 17:53:03,617 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 17:53:05,165 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 17:53:05,725 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:2885ms +30 一月 2026 | 17:53:07,020 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:2657ms +30 一月 2026 | 17:53:08,246 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:2010ms +30 一月 2026 | 17:53:11,348 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: join_room[{user}:115777] time:5096ms +30 一月 2026 | 17:53:20,200 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:242747 player:[551902,412118] fake_json:1 +30 一月 2026 | 17:53:21,942 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 17:53:23,476 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:2125ms +30 一月 2026 | 17:53:27,705 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 17:53:27,752 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 17:54:12,817 | ERROR | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | del robot room:865266 player:[158894,948059] fake_json:1 +30 一月 2026 | 17:54:15,064 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:907057 player:[746710,400967] fake_json:1 +30 一月 2026 | 17:54:22,236 | INFO | qtp809762318-71 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 17:54:23,529 | INFO | qtp809762318-71 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1920ms +30 一月 2026 | 17:54:23,786 | INFO | qtp809762318-61 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1626ms +30 一月 2026 | 17:55:11,406 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:111147 player:[371993,948059] fake_json:1 +30 一月 2026 | 17:55:21,493 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 17:55:21,543 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 17:55:45,004 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:762029 player:[944035,323800] fake_json:1 +30 一月 2026 | 17:55:56,054 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: get_panter_robotplays[{user}:112233] time:3477ms +30 一月 2026 | 17:56:05,382 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:575829 player:[948059,992762] fake_json:1 +30 一月 2026 | 17:56:16,559 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 17:56:18,038 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2247ms +30 一月 2026 | 17:56:18,334 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2045ms +30 一月 2026 | 17:57:04,516 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:228101 player:[946610,424127] fake_json:1 +30 一月 2026 | 17:57:26,214 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 17:57:26,265 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 17:57:40,247 | ERROR | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | del robot room:405262 player:[407896,615558] fake_json:1 +30 一月 2026 | 17:57:46,740 | INFO | qtp809762318-68 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 17:57:47,895 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1787ms +30 一月 2026 | 17:57:48,215 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1647ms +30 一月 2026 | 17:57:57,191 | INFO | qtp809762318-62 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 17:57:58,368 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1724ms +30 一月 2026 | 17:57:58,971 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1640ms +30 一月 2026 | 17:58:39,221 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 17:58:39,686 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 17:58:40,621 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2247ms +30 一月 2026 | 17:58:41,147 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2036ms +30 一月 2026 | 17:58:41,559 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:270082 player:[948059,708298] fake_json:1 +30 一月 2026 | 17:58:42,442 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:270082 player:[948059,708298] fake_json:1 +30 一月 2026 | 17:58:44,153 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1840ms +30 一月 2026 | 17:59:15,424 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:609782 player:[897609,826893] fake_json:1 +30 一月 2026 | 17:59:46,451 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:530087 player:[944035,374446] fake_json:1 +30 一月 2026 | 17:59:52,273 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 17:59:52,322 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 17:59:59,947 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:376307 player:[950914,424127] fake_json:1 +30 一月 2026 | 18:00:14,668 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 18:00:14,722 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 18:00:22,275 | INFO | qtp809762318-63 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:00:23,980 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2768ms +30 一月 2026 | 18:00:24,225 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:450783 player:[774381,371993] fake_json:1 +30 一月 2026 | 18:00:24,536 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:00:26,179 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2336ms +30 一月 2026 | 18:00:29,099 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1870ms +30 一月 2026 | 18:00:35,671 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 18:00:35,720 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 18:00:37,992 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:00:39,705 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2421ms +30 一月 2026 | 18:00:39,793 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2140ms +30 一月 2026 | 18:00:45,702 | INFO | qtp809762318-68 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:00:47,392 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2332ms +30 一月 2026 | 18:00:47,730 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1852ms +30 一月 2026 | 18:00:48,036 | INFO | qtp809762318-62 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:00:49,496 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2099ms +30 一月 2026 | 18:00:49,915 | ERROR | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | del robot room:643833 player:[680619,592635] fake_json:1 +30 一月 2026 | 18:00:50,101 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2117ms +30 一月 2026 | 18:01:13,630 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:01:14,961 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1953ms +30 一月 2026 | 18:01:16,690 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1901ms +30 一月 2026 | 18:01:27,457 | ERROR | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | del robot room:884536 player:[680619,864120] fake_json:1 +30 一月 2026 | 18:01:28,213 | ERROR | DefaultQuartzScheduler_Worker-7 | group.job.UpdatePlayRoomJob | | del robot room:884536 player:[680619,864120] fake_json:1 +30 一月 2026 | 18:01:34,874 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:2091ms +30 一月 2026 | 18:01:55,258 | INFO | qtp809762318-69 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:01:56,115 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1476ms +30 一月 2026 | 18:01:57,167 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1607ms +30 一月 2026 | 18:02:51,761 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:851807 player:[708298,948059] fake_json:1 +30 一月 2026 | 18:02:56,014 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:457216 player:[829427,746710] fake_json:1 +30 一月 2026 | 18:03:26,717 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:270548 player:[374446,897275] fake_json:1 +30 一月 2026 | 18:04:04,597 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:206001 player:[605025,400967] fake_json:1 +30 一月 2026 | 18:04:06,283 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:206001 player:[605025,400967] fake_json:1 +30 一月 2026 | 18:04:51,429 | INFO | qtp809762318-62 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:04:53,024 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2102ms +30 一月 2026 | 18:04:53,455 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:04:54,646 | INFO | qtp809762318-62 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:04:54,847 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2256ms +30 一月 2026 | 18:04:55,839 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:04:55,991 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:2020ms +30 一月 2026 | 18:04:56,909 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1818ms +30 一月 2026 | 18:04:58,363 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1490ms +30 一月 2026 | 18:05:00,430 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:362862 player:[918233,708298] fake_json:1 +30 一月 2026 | 18:05:48,329 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 18:05:48,378 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 18:05:57,030 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:2965ms +30 一月 2026 | 18:05:57,484 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:313453 player:[371993,750455] fake_json:1 +30 一月 2026 | 18:06:03,570 | ERROR | DefaultQuartzScheduler_Worker-7 | group.job.UpdatePlayRoomJob | | del 空 room:536125 player:null fake_json:1 +30 一月 2026 | 18:06:08,886 | ERROR | DefaultQuartzScheduler_Worker-9 | group.job.UpdatePlayRoomJob | | del 空 room:246578 player:null fake_json:1 +30 一月 2026 | 18:06:31,046 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 18:06:31,095 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 18:06:41,141 | INFO | qtp809762318-68 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:06:42,462 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:2060ms +30 一月 2026 | 18:06:42,943 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1842ms +30 一月 2026 | 18:06:43,214 | ERROR | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | del 空 room:508321 player:null fake_json:1 +30 一月 2026 | 18:06:43,814 | ERROR | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | del 空 room:387162 player:null fake_json:1 +30 一月 2026 | 18:06:51,691 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del 空 room:764436 player:null fake_json:1 +30 一月 2026 | 18:06:54,517 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:422479 player:[615558,924063] fake_json:1 +30 一月 2026 | 18:06:56,153 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del 空 room:979575 player:null fake_json:1 +30 一月 2026 | 18:07:03,897 | INFO | qtp809762318-71 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:07:04,894 | INFO | qtp809762318-71 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1686ms +30 一月 2026 | 18:07:05,308 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1512ms +30 一月 2026 | 18:07:09,341 | INFO | qtp809762318-62 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:07:10,484 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1775ms +30 一月 2026 | 18:07:12,231 | INFO | qtp809762318-71 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1333ms +30 一月 2026 | 18:07:15,464 | ERROR | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | del 空 room:792953 player:null fake_json:1 +30 一月 2026 | 18:07:18,271 | ERROR | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | del 空 room:136029 player:null fake_json:1 +30 一月 2026 | 18:07:19,110 | ERROR | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | del 空 room:124710 player:null fake_json:1 +30 一月 2026 | 18:07:29,997 | WARN | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | robot not enough, cur used robot 184 +30 一月 2026 | 18:07:30,245 | WARN | DefaultQuartzScheduler_Worker-9 | group.job.UpdatePlayRoomJob | | robot not enough, cur used robot 184 +30 一月 2026 | 18:07:31,697 | WARN | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | robot not enough, cur used robot 184 +30 一月 2026 | 18:07:32,723 | INFO | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | robot:518695 head:https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTLpDZ4vEMT6SJgYPiaVm9xnttGp7elVIDQ9CPwSwSKzFt9TX44m9iaSkjK3ibm13r2ibdzgyMW7KtvHrA/132 md5:787d66f3fdfa8df70795629c62a3a850 +30 一月 2026 | 18:07:32,801 | INFO | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | robot:518695 head:https://thirdwx.qlogo.cn/mmopen/vi_32/U2AicVhChBqYJLmftEw36ru3v7JDhfT4V86E1gAyX8mI2ZvOYjXav1frdgqjRnBiaU8RLLxkcDNqCj4Wmlx6b02g/132 md5:4765b56d94c1b900556ff47b54d10a1b +30 一月 2026 | 18:07:32,801 | INFO | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | create robot account:{"acc":"518695","nick":"樱花智能锁 长沙运营中心 ","regTime":9999,"password":"f38640ab8f3af8930cdcb4ba945d3a6e","sex":1,"mng":0,"reg_time":1769767652,"id":518695,"portrait":"https://thirdwx.qlogo.cn/mmopen/vi_32/U2AicVhChBqYJLmftEw36ru3v7JDhfT4V86E1gAyX8mI2ZvOYjXav1frdgqjRnBiaU8RLLxkcDNqCj4Wmlx6b02g/132","diamo":0,"type":0} password:xx123456xx +30 一月 2026 | 18:07:32,897 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | +java.sql.SQLException: Field 'jiqiren' doesn't have a default value + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.taurus.core.plugin.database.Db.__executeUpdate(Db.java:255) + at com.taurus.core.plugin.database.Db.insert(Db.java:325) + at com.group.job.UpdatePlayRoomJob.create_register(UpdatePlayRoomJob.java:864) + at com.group.job.UpdatePlayRoomJob.createRobot(UpdatePlayRoomJob.java:676) + at com.group.job.UpdatePlayRoomJob.getRobot(UpdatePlayRoomJob.java:575) + at com.group.job.UpdatePlayRoomJob.updateRedisMap(UpdatePlayRoomJob.java:503) + at com.group.job.UpdatePlayRoomJob.createGroupRoom(UpdatePlayRoomJob.java:464) + at com.group.job.UpdatePlayRoomJob.createPlayRoom(UpdatePlayRoomJob.java:138) + at com.group.job.UpdatePlayRoomJob.execute(UpdatePlayRoomJob.java:559) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +30 一月 2026 | 18:07:33,217 | INFO | DefaultQuartzScheduler_Worker-9 | group.job.UpdatePlayRoomJob | | robot:310395 head:https://thirdwx.qlogo.cn/mmopen/vi_32/o9539ZDnXzdib7biaFYvw76YDWJLY64n12ibjN9Glx11NNXVTYcMLvctXYiazvUicIzyeZnoycrMZibYdaVEecqM7OWw/132 md5:3ff4df8c3f242398ea761c3160ae6144 +30 一月 2026 | 18:07:33,217 | INFO | DefaultQuartzScheduler_Worker-9 | group.job.UpdatePlayRoomJob | | create robot account:{"acc":"310395","nick":"丫头","regTime":9999,"password":"f38640ab8f3af8930cdcb4ba945d3a6e","sex":1,"mng":0,"reg_time":1769767653,"id":310395,"portrait":"https://thirdwx.qlogo.cn/mmopen/vi_32/o9539ZDnXzdib7biaFYvw76YDWJLY64n12ibjN9Glx11NNXVTYcMLvctXYiazvUicIzyeZnoycrMZibYdaVEecqM7OWw/132","diamo":0,"type":0} password:xx123456xx +30 一月 2026 | 18:07:33,334 | ERROR | DefaultQuartzScheduler_Worker-9 | group.job.UpdatePlayRoomJob | | +java.sql.SQLException: Field 'jiqiren' doesn't have a default value + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.taurus.core.plugin.database.Db.__executeUpdate(Db.java:255) + at com.taurus.core.plugin.database.Db.insert(Db.java:325) + at com.group.job.UpdatePlayRoomJob.create_register(UpdatePlayRoomJob.java:864) + at com.group.job.UpdatePlayRoomJob.createRobot(UpdatePlayRoomJob.java:676) + at com.group.job.UpdatePlayRoomJob.getRobot(UpdatePlayRoomJob.java:575) + at com.group.job.UpdatePlayRoomJob.updateRedisMap(UpdatePlayRoomJob.java:503) + at com.group.job.UpdatePlayRoomJob.createGroupRoom(UpdatePlayRoomJob.java:464) + at com.group.job.UpdatePlayRoomJob.createPlayRoom(UpdatePlayRoomJob.java:138) + at com.group.job.UpdatePlayRoomJob.execute(UpdatePlayRoomJob.java:559) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +30 一月 2026 | 18:07:34,394 | INFO | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | robot:674614 head:https://thirdwx.qlogo.cn/mmopen/vi_32/4DEic2HgMKwwo1UeYL663xiagDV7pjytL2ZRaqiaNPUIbicSjf98NJ396D9F9UjYOffCKDzQrvDf2GoScVwA7PtLyg/132 md5:fd3bdd43bfed82fc96994e18e9629f96 +30 一月 2026 | 18:07:34,394 | INFO | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | create robot account:{"acc":"674614","nick":"陈芳","regTime":9999,"password":"f38640ab8f3af8930cdcb4ba945d3a6e","sex":1,"mng":0,"reg_time":1769767654,"id":674614,"portrait":"https://thirdwx.qlogo.cn/mmopen/vi_32/4DEic2HgMKwwo1UeYL663xiagDV7pjytL2ZRaqiaNPUIbicSjf98NJ396D9F9UjYOffCKDzQrvDf2GoScVwA7PtLyg/132","diamo":0,"type":0} password:xx123456xx +30 一月 2026 | 18:07:34,476 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | +java.sql.SQLException: Field 'jiqiren' doesn't have a default value + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.taurus.core.plugin.database.Db.__executeUpdate(Db.java:255) + at com.taurus.core.plugin.database.Db.insert(Db.java:325) + at com.group.job.UpdatePlayRoomJob.create_register(UpdatePlayRoomJob.java:864) + at com.group.job.UpdatePlayRoomJob.createRobot(UpdatePlayRoomJob.java:676) + at com.group.job.UpdatePlayRoomJob.getRobot(UpdatePlayRoomJob.java:575) + at com.group.job.UpdatePlayRoomJob.updateRedisMap(UpdatePlayRoomJob.java:503) + at com.group.job.UpdatePlayRoomJob.createGroupRoom(UpdatePlayRoomJob.java:464) + at com.group.job.UpdatePlayRoomJob.createPlayRoom(UpdatePlayRoomJob.java:138) + at com.group.job.UpdatePlayRoomJob.execute(UpdatePlayRoomJob.java:559) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +30 一月 2026 | 18:07:34,599 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:07:35,716 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1629ms +30 一月 2026 | 18:07:36,475 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1700ms +30 一月 2026 | 18:07:37,016 | INFO | DefaultQuartzScheduler_Worker-9 | group.job.UpdatePlayRoomJob | | robot:873893 head:https://thirdwx.qlogo.cn/mmopen/vi_32/qhmpyJp7Ed4IQqxtk3O6kwDCicUfPQo62V8ic6ZjFicEF4hDLFkSuYaQibZzia05rWlwOfjpES00VSTnTL8dqKnjWXg/132 md5:787d66f3fdfa8df70795629c62a3a850 +30 一月 2026 | 18:07:37,151 | INFO | DefaultQuartzScheduler_Worker-9 | group.job.UpdatePlayRoomJob | | robot:873893 head:https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTJUbZh86fOWvNHQPeo8eJ2SY3fCuUemG9Bodo8hoTsDaNy7nfOHZHB4ic8JN0vVPLh1v7W3Y1RuICw/132 md5:787d66f3fdfa8df70795629c62a3a850 +30 一月 2026 | 18:07:37,236 | INFO | DefaultQuartzScheduler_Worker-9 | group.job.UpdatePlayRoomJob | | robot:873893 head:https://thirdwx.qlogo.cn/mmopen/vi_32/6p7YWGXJhrEsVia4mOtYqdeybrcMzXoxrG19gEdkzCnp1f6femQguqkliaCia5NGvic8zlffWMmLXOT2FehbzW0ic3w/132 md5:0b74dee404f219a9e0b3b4ca6d185e38 +30 一月 2026 | 18:07:37,236 | INFO | DefaultQuartzScheduler_Worker-9 | group.job.UpdatePlayRoomJob | | create robot account:{"acc":"873893","nick":"勿忘初心","regTime":9999,"password":"f38640ab8f3af8930cdcb4ba945d3a6e","sex":1,"mng":0,"reg_time":1769767657,"id":873893,"portrait":"https://thirdwx.qlogo.cn/mmopen/vi_32/6p7YWGXJhrEsVia4mOtYqdeybrcMzXoxrG19gEdkzCnp1f6femQguqkliaCia5NGvic8zlffWMmLXOT2FehbzW0ic3w/132","diamo":0,"type":0} password:xx123456xx +30 一月 2026 | 18:07:37,340 | ERROR | DefaultQuartzScheduler_Worker-9 | group.job.UpdatePlayRoomJob | | +java.sql.SQLException: Field 'jiqiren' doesn't have a default value + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.taurus.core.plugin.database.Db.__executeUpdate(Db.java:255) + at com.taurus.core.plugin.database.Db.insert(Db.java:325) + at com.group.job.UpdatePlayRoomJob.create_register(UpdatePlayRoomJob.java:864) + at com.group.job.UpdatePlayRoomJob.createRobot(UpdatePlayRoomJob.java:676) + at com.group.job.UpdatePlayRoomJob.getRobot(UpdatePlayRoomJob.java:597) + at com.group.job.UpdatePlayRoomJob.updateRedisMap(UpdatePlayRoomJob.java:503) + at com.group.job.UpdatePlayRoomJob.createGroupRoom(UpdatePlayRoomJob.java:464) + at com.group.job.UpdatePlayRoomJob.createPlayRoom(UpdatePlayRoomJob.java:138) + at com.group.job.UpdatePlayRoomJob.execute(UpdatePlayRoomJob.java:559) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +30 一月 2026 | 18:07:38,262 | INFO | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | robot:956249 head:https://thirdwx.qlogo.cn/mmopen/vi_32/B8moqQg5IYTY33rjPzLOTHicEd9anR0hZSGZUUYic8ibT400huI4R2pVDLUD5ibPAJ5kFNDViazW2gOgWOFpibNZ3QlQ/132 md5:787d66f3fdfa8df70795629c62a3a850 +30 一月 2026 | 18:07:38,349 | INFO | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | robot:956249 head:https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTK5PibWkpujGRhH2aZEEtsVQd6iceTNdcaCqQribREdWBGUhI9JXPkWwibbu4cbgfqSyYte0YhMoblJzw/132 md5:a8cd8a50a73171252e29f9f712ec6393 +30 一月 2026 | 18:07:38,349 | INFO | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | create robot account:{"acc":"956249","nick":"李煜轩","regTime":9999,"password":"f38640ab8f3af8930cdcb4ba945d3a6e","sex":1,"mng":0,"reg_time":1769767658,"id":956249,"portrait":"https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTK5PibWkpujGRhH2aZEEtsVQd6iceTNdcaCqQribREdWBGUhI9JXPkWwibbu4cbgfqSyYte0YhMoblJzw/132","diamo":0,"type":0} password:xx123456xx +30 一月 2026 | 18:07:38,437 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | +java.sql.SQLException: Field 'jiqiren' doesn't have a default value + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.taurus.core.plugin.database.Db.__executeUpdate(Db.java:255) + at com.taurus.core.plugin.database.Db.insert(Db.java:325) + at com.group.job.UpdatePlayRoomJob.create_register(UpdatePlayRoomJob.java:864) + at com.group.job.UpdatePlayRoomJob.createRobot(UpdatePlayRoomJob.java:676) + at com.group.job.UpdatePlayRoomJob.getRobot(UpdatePlayRoomJob.java:597) + at com.group.job.UpdatePlayRoomJob.updateRedisMap(UpdatePlayRoomJob.java:503) + at com.group.job.UpdatePlayRoomJob.createGroupRoom(UpdatePlayRoomJob.java:464) + at com.group.job.UpdatePlayRoomJob.createPlayRoom(UpdatePlayRoomJob.java:138) + at com.group.job.UpdatePlayRoomJob.execute(UpdatePlayRoomJob.java:559) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +30 一月 2026 | 18:07:38,680 | WARN | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | robot not enough, cur used robot 185 +30 一月 2026 | 18:07:42,385 | INFO | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | robot:894301 head:https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTKgib1t3HbjYXdOfNjY7y9A8kqotXt4AtJIrYZWdDJg7tseU5xlHSWWRA0VSs9a71IR8mTCJaFxTTA/132 md5:787d66f3fdfa8df70795629c62a3a850 +30 一月 2026 | 18:07:42,521 | INFO | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | robot:894301 head:https://thirdwx.qlogo.cn/mmopen/vi_32/zxVdbjfUibzgAC7ic0A2bmfpezic8TOXZWkNlDO0SxJdCL5rO7KYu9h5RXxiciaAyCJahwwcXj3os0ibEylhBnZPC6ibw/132 md5:787d66f3fdfa8df70795629c62a3a850 +30 一月 2026 | 18:07:42,681 | INFO | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | robot:894301 head:https://thirdwx.qlogo.cn/mmopen/vi_32/BOt07FD9cA5g1IqmARAagb8ampblDeBjryeH9zibes2NVfgP0pxJia8LJrAjs7hJEPFQmv5BxaSIoCpBYXg2zRtQ/132 md5:787d66f3fdfa8df70795629c62a3a850 +30 一月 2026 | 18:07:42,835 | INFO | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | robot:894301 head:https://thirdwx.qlogo.cn/mmopen/vi_32/vUP3QPLdxqGNW5zdwGh2SgtzULEAMfiaQ43Hqml05SXgsficiba1lOqUBgiaaU07NvpwiagoptCLOt06sphFe7tTbKw/132 md5:787d66f3fdfa8df70795629c62a3a850 +30 一月 2026 | 18:07:43,004 | INFO | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | robot:894301 head:https://thirdwx.qlogo.cn/mmopen/vi_32/LXvqaP1mEibophF0yoIdPtvXd83xLpt9KXXkyibLGOE2rHM57clzPK1fbD8OkmgkM85aWqzOzz0xoplzSMa5xAWQ/132 md5:787d66f3fdfa8df70795629c62a3a850 +30 一月 2026 | 18:07:43,185 | INFO | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | robot:894301 head:https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTI1MqK71ITCXaE8k4ukRfM2L2OFHyD5yjtNODP2ncYYRgt1K0icC91rGeAH22MN6Wv7auhRe04zACA/132 md5:787d66f3fdfa8df70795629c62a3a850 +30 一月 2026 | 18:07:43,280 | INFO | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | robot:894301 head:https://thirdwx.qlogo.cn/mmopen/vi_32/gUbmNzmY8y9jpKQqv2ouicx6kF8BpQNqE7LR0DXf8amqpzKRzwsgiapFMTvvnyDWX5uyN5ibdbTibWiaUPNUsRgmNKw/132 md5:4dab3afdc3df2d42cd666e1cb1c0f427 +30 一月 2026 | 18:07:43,281 | INFO | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | create robot account:{"acc":"894301","nick":"群","regTime":9999,"password":"f38640ab8f3af8930cdcb4ba945d3a6e","sex":1,"mng":0,"reg_time":1769767663,"id":894301,"portrait":"https://thirdwx.qlogo.cn/mmopen/vi_32/gUbmNzmY8y9jpKQqv2ouicx6kF8BpQNqE7LR0DXf8amqpzKRzwsgiapFMTvvnyDWX5uyN5ibdbTibWiaUPNUsRgmNKw/132","diamo":0,"type":0} password:xx123456xx +30 一月 2026 | 18:07:43,397 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | +java.sql.SQLException: Field 'jiqiren' doesn't have a default value + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.taurus.core.plugin.database.Db.__executeUpdate(Db.java:255) + at com.taurus.core.plugin.database.Db.insert(Db.java:325) + at com.group.job.UpdatePlayRoomJob.create_register(UpdatePlayRoomJob.java:864) + at com.group.job.UpdatePlayRoomJob.createRobot(UpdatePlayRoomJob.java:676) + at com.group.job.UpdatePlayRoomJob.getRobot(UpdatePlayRoomJob.java:575) + at com.group.job.UpdatePlayRoomJob.updateRedisMap(UpdatePlayRoomJob.java:503) + at com.group.job.UpdatePlayRoomJob.createGroupRoom(UpdatePlayRoomJob.java:464) + at com.group.job.UpdatePlayRoomJob.createPlayRoom(UpdatePlayRoomJob.java:138) + at com.group.job.UpdatePlayRoomJob.execute(UpdatePlayRoomJob.java:559) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +30 一月 2026 | 18:07:50,525 | WARN | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | robot not enough, cur used robot 185 +30 一月 2026 | 18:07:50,740 | WARN | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | robot not enough, cur used robot 185 +30 一月 2026 | 18:07:51,281 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del 空 room:560471 player:null fake_json:1 +30 一月 2026 | 18:07:52,072 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del 空 room:505441 player:null fake_json:1 +30 一月 2026 | 18:07:52,758 | WARN | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | robot not enough, cur used robot 184 +30 一月 2026 | 18:07:53,704 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:603813 player:[400967,323800] fake_json:1 +30 一月 2026 | 18:07:54,398 | INFO | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | robot:588589 head:https://thirdwx.qlogo.cn/mmopen/vi_32/WmxkCfNhM2h7e5DfSJgEa87BibZNbIqOFlDtWS0PjaAhN1UUHicticg4wkd5lv0AsUywoBwHlS6xl5cYLadSoIK2Q/132 md5:1666816f317fab999e3e102b261273c7 +30 一月 2026 | 18:07:54,398 | INFO | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | create robot account:{"acc":"588589","nick":"干杉波艺堂新美婷内衣专卖 果果","regTime":9999,"password":"f38640ab8f3af8930cdcb4ba945d3a6e","sex":1,"mng":0,"reg_time":1769767674,"id":588589,"portrait":"https://thirdwx.qlogo.cn/mmopen/vi_32/WmxkCfNhM2h7e5DfSJgEa87BibZNbIqOFlDtWS0PjaAhN1UUHicticg4wkd5lv0AsUywoBwHlS6xl5cYLadSoIK2Q/132","diamo":0,"type":0} password:xx123456xx +30 一月 2026 | 18:07:54,501 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | +java.sql.SQLException: Field 'jiqiren' doesn't have a default value + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.taurus.core.plugin.database.Db.__executeUpdate(Db.java:255) + at com.taurus.core.plugin.database.Db.insert(Db.java:325) + at com.group.job.UpdatePlayRoomJob.create_register(UpdatePlayRoomJob.java:864) + at com.group.job.UpdatePlayRoomJob.createRobot(UpdatePlayRoomJob.java:676) + at com.group.job.UpdatePlayRoomJob.getRobot(UpdatePlayRoomJob.java:575) + at com.group.job.UpdatePlayRoomJob.updateRedisMap(UpdatePlayRoomJob.java:503) + at com.group.job.UpdatePlayRoomJob.createGroupRoom(UpdatePlayRoomJob.java:464) + at com.group.job.UpdatePlayRoomJob.createPlayRoom(UpdatePlayRoomJob.java:138) + at com.group.job.UpdatePlayRoomJob.execute(UpdatePlayRoomJob.java:559) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +30 一月 2026 | 18:07:54,542 | INFO | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | robot:870589 head:https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTIWFAJGwjiadzhJIZdM8kqMBjAmFlyb0vZS6ep4ohXjV4bcVLElKRqHs99SMPTCFiaBbHzmwtna12Iw/132 md5:6fa054182a809c3e6102148031d4fb5e +30 一月 2026 | 18:07:54,543 | INFO | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | create robot account:{"acc":"870589","nick":"我爱我的家人","regTime":9999,"password":"f38640ab8f3af8930cdcb4ba945d3a6e","sex":1,"mng":0,"reg_time":1769767674,"id":870589,"portrait":"https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTIWFAJGwjiadzhJIZdM8kqMBjAmFlyb0vZS6ep4ohXjV4bcVLElKRqHs99SMPTCFiaBbHzmwtna12Iw/132","diamo":0,"type":0} password:xx123456xx +30 一月 2026 | 18:07:54,603 | ERROR | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | +java.sql.SQLException: Field 'jiqiren' doesn't have a default value + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.taurus.core.plugin.database.Db.__executeUpdate(Db.java:255) + at com.taurus.core.plugin.database.Db.insert(Db.java:325) + at com.group.job.UpdatePlayRoomJob.create_register(UpdatePlayRoomJob.java:864) + at com.group.job.UpdatePlayRoomJob.createRobot(UpdatePlayRoomJob.java:676) + at com.group.job.UpdatePlayRoomJob.getRobot(UpdatePlayRoomJob.java:575) + at com.group.job.UpdatePlayRoomJob.updateRedisMap(UpdatePlayRoomJob.java:503) + at com.group.job.UpdatePlayRoomJob.createGroupRoom(UpdatePlayRoomJob.java:464) + at com.group.job.UpdatePlayRoomJob.createPlayRoom(UpdatePlayRoomJob.java:138) + at com.group.job.UpdatePlayRoomJob.execute(UpdatePlayRoomJob.java:559) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +30 一月 2026 | 18:07:54,721 | ERROR | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | del robot room:603813 player:[400967,323800] fake_json:1 +30 一月 2026 | 18:07:55,700 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:519339 player:[750455,371993] fake_json:1 +30 一月 2026 | 18:07:56,220 | INFO | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | robot:572311 head:https://thirdwx.qlogo.cn/mmopen/vi_32/rmE6DNu6wR1wMtml3rWKWqoyukao8ibJY4JSjOGCUibN30jOf1N5DG1AP1lh8JXG3HqGde3W2VRriaHAo051HUJDg/132 md5:787d66f3fdfa8df70795629c62a3a850 +30 一月 2026 | 18:07:56,395 | INFO | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | robot:572311 head:https://thirdwx.qlogo.cn/mmopen/vi_32/q9Vu6LibomGyibBb55MQOPy40aaic5UIENGrYSWybdembnmAWicSkJicfVn8uZN5QS55xWkvAZHxaokfubdGD6Fzcug/132 md5:787d66f3fdfa8df70795629c62a3a850 +30 一月 2026 | 18:07:56,482 | INFO | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | robot:572311 head:https://thirdwx.qlogo.cn/mmopen/vi_32/EIXzEwmTaf2ibB235Q7LxXXvTQw3jJ97v5z0o9rBKItne2xx7kK4JbicNIBWIMjTgPZHicU9micAxuaVvIfH8EiafkA/132 md5:a74e96ddbbd6c8b9ca81fc69b1217236 +30 一月 2026 | 18:07:56,482 | INFO | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | create robot account:{"acc":"572311","nick":"谢青霞","regTime":9999,"password":"f38640ab8f3af8930cdcb4ba945d3a6e","sex":1,"mng":0,"reg_time":1769767676,"id":572311,"portrait":"https://thirdwx.qlogo.cn/mmopen/vi_32/EIXzEwmTaf2ibB235Q7LxXXvTQw3jJ97v5z0o9rBKItne2xx7kK4JbicNIBWIMjTgPZHicU9micAxuaVvIfH8EiafkA/132","diamo":0,"type":0} password:xx123456xx +30 一月 2026 | 18:07:56,496 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:519339 player:[750455,371993] fake_json:1 +30 一月 2026 | 18:07:56,586 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | +java.sql.SQLException: Field 'jiqiren' doesn't have a default value + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.taurus.core.plugin.database.Db.__executeUpdate(Db.java:255) + at com.taurus.core.plugin.database.Db.insert(Db.java:325) + at com.group.job.UpdatePlayRoomJob.create_register(UpdatePlayRoomJob.java:864) + at com.group.job.UpdatePlayRoomJob.createRobot(UpdatePlayRoomJob.java:676) + at com.group.job.UpdatePlayRoomJob.getRobot(UpdatePlayRoomJob.java:575) + at com.group.job.UpdatePlayRoomJob.updateRedisMap(UpdatePlayRoomJob.java:503) + at com.group.job.UpdatePlayRoomJob.createGroupRoom(UpdatePlayRoomJob.java:464) + at com.group.job.UpdatePlayRoomJob.createPlayRoom(UpdatePlayRoomJob.java:138) + at com.group.job.UpdatePlayRoomJob.execute(UpdatePlayRoomJob.java:559) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +30 一月 2026 | 18:07:56,856 | ERROR | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | del robot room:519339 player:[750455,371993] fake_json:1 +30 一月 2026 | 18:07:58,347 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:350030 player:[774381,918233] fake_json:1 +30 一月 2026 | 18:08:02,565 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 18:08:02,612 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 18:08:12,917 | INFO | qtp809762318-68 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:08:14,542 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2296ms +30 一月 2026 | 18:08:14,912 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:08:14,955 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:928322 player:[0,0] fake_json:1 +30 一月 2026 | 18:08:15,017 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2003ms +30 一月 2026 | 18:08:16,105 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1852ms +30 一月 2026 | 18:08:16,956 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1854ms +30 一月 2026 | 18:08:18,859 | ERROR | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | del robot room:412235 player:[508402,708298] fake_json:1 +30 一月 2026 | 18:08:43,591 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:08:45,200 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2271ms +30 一月 2026 | 18:08:45,525 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2091ms +30 一月 2026 | 18:08:49,081 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:645818 player:[680619,412118] fake_json:1 +30 一月 2026 | 18:08:57,206 | ERROR | DefaultQuartzScheduler_Worker-9 | group.job.UpdatePlayRoomJob | | del robot room:589872 player:[864120,848960] fake_json:1 +30 一月 2026 | 18:09:12,597 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:09:13,898 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1956ms +30 一月 2026 | 18:09:15,006 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1723ms +30 一月 2026 | 18:09:18,619 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:427411 player:[746710,950914] fake_json:1 +30 一月 2026 | 18:09:29,080 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:129617 player:[762687,821735] fake_json:1 +30 一月 2026 | 18:09:41,567 | INFO | qtp809762318-69 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:09:42,765 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1801ms +30 一月 2026 | 18:09:48,150 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1747ms +30 一月 2026 | 18:10:01,536 | ERROR | DefaultQuartzScheduler_Worker-7 | group.job.UpdatePlayRoomJob | | del robot room:378500 player:[992762,540812] fake_json:1 +30 一月 2026 | 18:10:56,181 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 18:10:56,220 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 18:11:03,796 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:547574 player:[0,371993] fake_json:1 +30 一月 2026 | 18:11:05,993 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:469165 player:[158894,0] fake_json:1 +30 一月 2026 | 18:11:08,292 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:378645 player:[374446,460542] fake_json:1 +30 一月 2026 | 18:11:08,734 | ERROR | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | del robot room:378645 player:[374446,460542] fake_json:1 +30 一月 2026 | 18:11:20,289 | INFO | qtp809762318-62 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:11:22,438 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2819ms +30 一月 2026 | 18:11:23,711 | INFO | qtp809762318-68 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:11:24,915 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1834ms +30 一月 2026 | 18:11:25,474 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1980ms +30 一月 2026 | 18:11:28,476 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1933ms +30 一月 2026 | 18:11:34,977 | INFO | qtp809762318-62 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:11:36,155 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1898ms +30 一月 2026 | 18:11:37,340 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2241ms +30 一月 2026 | 18:12:04,353 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:12:05,784 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:2109ms +30 一月 2026 | 18:12:09,990 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1289ms +30 一月 2026 | 18:12:29,467 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 18:12:29,514 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 18:12:30,964 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:12:32,225 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2047ms +30 一月 2026 | 18:12:32,254 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1912ms +30 一月 2026 | 18:12:38,457 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:905837 player:[508402,762687] fake_json:1 +30 一月 2026 | 18:13:07,696 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:330225 player:[158894,762687] fake_json:1 +30 一月 2026 | 18:13:15,667 | INFO | qtp809762318-62 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:13:17,075 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2020ms +30 一月 2026 | 18:13:17,699 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1875ms +30 一月 2026 | 18:13:23,416 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:13:24,696 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2006ms +30 一月 2026 | 18:13:25,775 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2354ms +30 一月 2026 | 18:13:47,893 | ERROR | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | del robot room:955407 player:[412118,158894] fake_json:1 +30 一月 2026 | 18:14:43,024 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:626691 player:[918233,746710] fake_json:1 +30 一月 2026 | 18:15:26,775 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:887137 player:[992762,508402] fake_json:1 +30 一月 2026 | 18:15:44,654 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 18:15:44,702 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 18:15:48,936 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del 空 room:871369 player:[] fake_json: +30 一月 2026 | 18:15:49,771 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del 空 room:246124 player:[] fake_json: +30 一月 2026 | 18:15:58,802 | ERROR | DefaultQuartzScheduler_Worker-7 | group.job.UpdatePlayRoomJob | | del robot room:622841 player:[374446,950914] fake_json:1 +30 一月 2026 | 18:16:03,827 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:16:04,967 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1727ms +30 一月 2026 | 18:16:06,839 | INFO | qtp809762318-71 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:16:08,117 | INFO | qtp809762318-71 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1825ms +30 一月 2026 | 18:16:12,883 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2367ms +30 一月 2026 | 18:16:25,180 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:766644 player:[460542,848960] fake_json:1 +30 一月 2026 | 18:16:31,239 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:819237 player:[746710,950914] fake_json:1 +30 一月 2026 | 18:16:40,043 | INFO | qtp809762318-63 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:16:41,282 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:2095ms +30 一月 2026 | 18:16:41,845 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1916ms +30 一月 2026 | 18:16:52,639 | INFO | qtp809762318-71 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:16:53,860 | INFO | qtp809762318-71 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1889ms +30 一月 2026 | 18:16:54,740 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:2115ms +30 一月 2026 | 18:17:00,676 | INFO | qtp809762318-62 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:17:01,881 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1987ms +30 一月 2026 | 18:17:02,399 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:755173 player:[821735,412118] fake_json:1 +30 一月 2026 | 18:17:02,640 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2136ms +30 一月 2026 | 18:17:04,637 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:602562 player:[950914,762687] fake_json:1 +30 一月 2026 | 18:17:07,959 | INFO | qtp809762318-65 | group.controller.GroupRoomController | | matchRoom() ==> pid = 11 +30 一月 2026 | 18:17:15,981 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: match_room[{user}:177475] time:9231ms +30 一月 2026 | 18:17:23,278 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:17:24,535 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1793ms +30 一月 2026 | 18:17:25,356 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1787ms +30 一月 2026 | 18:17:27,396 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:17:28,340 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1489ms +30 一月 2026 | 18:17:28,968 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1604ms +30 一月 2026 | 18:17:43,004 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:420487 player:[374446,918233] fake_json:1 +30 一月 2026 | 18:17:48,841 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:927654 player:[746710,508402] fake_json:1 +30 一月 2026 | 18:18:01,058 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:18:02,360 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1984ms +30 一月 2026 | 18:18:03,558 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:2358ms +30 一月 2026 | 18:18:21,605 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:617380 player:[412118,746710] fake_json:1 +30 一月 2026 | 18:18:59,111 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:621888 player:[371993,374446] fake_json:1 +30 一月 2026 | 18:19:00,797 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:598056 player:[774381,950914] fake_json:1 +30 一月 2026 | 18:19:01,075 | ERROR | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | del robot room:598056 player:[774381,950914] fake_json:1 +30 一月 2026 | 18:19:10,166 | INFO | qtp809762318-62 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:19:11,511 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1805ms +30 一月 2026 | 18:19:12,051 | INFO | qtp809762318-71 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1696ms +30 一月 2026 | 18:19:17,816 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:651006 player:[158894,864120] fake_json:1 +30 一月 2026 | 18:19:57,020 | ERROR | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | del robot room:646236 player:[750455,821735] fake_json:1 +30 一月 2026 | 18:20:01,795 | ERROR | DefaultQuartzScheduler_Worker-7 | group.job.UpdatePlayRoomJob | | del robot room:915281 player:[774381,540812] fake_json:1 +30 一月 2026 | 18:20:41,184 | ERROR | DefaultQuartzScheduler_Worker-9 | group.job.UpdatePlayRoomJob | | del robot room:991339 player:[750455,708298] fake_json:1 +30 一月 2026 | 18:20:41,800 | ERROR | DefaultQuartzScheduler_Worker-7 | group.job.UpdatePlayRoomJob | | del robot room:991339 player:[750455,708298] fake_json:1 +30 一月 2026 | 18:20:59,419 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:900020 player:[864120,950914] fake_json:1 +30 一月 2026 | 18:21:17,673 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 18:21:17,720 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 18:21:30,058 | ERROR | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | del robot room:829418 player:[680619,762687] fake_json:1 +30 一月 2026 | 18:21:49,002 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:21:50,561 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:2220ms +30 一月 2026 | 18:21:50,860 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1777ms +30 一月 2026 | 18:22:03,061 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:259195 player:[460542,774381] fake_json:1 +30 一月 2026 | 18:22:05,293 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:22:06,000 | INFO | qtp809762318-68 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:22:06,360 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1893ms +30 一月 2026 | 18:22:07,120 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1664ms +30 一月 2026 | 18:22:12,347 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del 空 room:912601 player:[] fake_json: +30 一月 2026 | 18:22:15,279 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:700715 player:[746710,762687] fake_json:1 +30 一月 2026 | 18:22:15,279 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2078ms +30 一月 2026 | 18:22:24,960 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:22:26,321 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1908ms +30 一月 2026 | 18:22:27,045 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1736ms +30 一月 2026 | 18:22:37,383 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:730438 player:[992762,708298] fake_json:1 +30 一月 2026 | 18:22:44,888 | ERROR | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | del robot room:933516 player:[848960,460542] fake_json:1 +30 一月 2026 | 18:22:48,566 | INFO | qtp809762318-66 | group.controller.GroupRoomController | | matchRoom() ==> pid = 11 +30 一月 2026 | 18:22:57,261 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: match_room[{user}:177475] time:10097ms +30 一月 2026 | 18:23:01,039 | INFO | qtp809762318-66 | group.controller.GroupRoomController | | matchRoom() ==> pid = 11 +30 一月 2026 | 18:23:06,786 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: match_room[{user}:115777] time:6831ms +30 一月 2026 | 18:23:16,044 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:23:17,401 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2087ms +30 一月 2026 | 18:23:18,443 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2392ms +30 一月 2026 | 18:23:24,202 | ERROR | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | del robot room:966864 player:[371993,774381] fake_json:1 +30 一月 2026 | 18:23:32,185 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:23:33,641 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2185ms +30 一月 2026 | 18:23:34,853 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2757ms +30 一月 2026 | 18:23:53,727 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:624197 player:[918233,158894] fake_json:1 +30 一月 2026 | 18:23:55,763 | ERROR | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | del robot room:335833 player:[762687,821735] fake_json:1 +30 一月 2026 | 18:23:55,881 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:335833 player:[762687,821735] fake_json:1 +30 一月 2026 | 18:24:25,242 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:24:26,444 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1891ms +30 一月 2026 | 18:24:27,001 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1785ms +30 一月 2026 | 18:24:35,231 | ERROR | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | del robot room:242534 player:[762687,158894] fake_json:1 +30 一月 2026 | 18:24:35,766 | ERROR | DefaultQuartzScheduler_Worker-7 | group.job.UpdatePlayRoomJob | | del robot room:242534 player:[762687,158894] fake_json:1 +30 一月 2026 | 18:24:37,445 | INFO | qtp809762318-64 | group.controller.GroupRoomController | | matchRoom() ==> pid = 11 +30 一月 2026 | 18:24:43,735 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: match_room[{user}:177475] time:7208ms +30 一月 2026 | 18:24:43,949 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:24:45,172 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1829ms +30 一月 2026 | 18:24:45,606 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1653ms +30 一月 2026 | 18:24:53,992 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:24:55,246 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1784ms +30 一月 2026 | 18:24:55,827 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1757ms +30 一月 2026 | 18:24:55,874 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:357758 player:[950914,774381] fake_json:1 +30 一月 2026 | 18:24:57,766 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:322962 player:[708298,374446] fake_json:1 +30 一月 2026 | 18:24:59,008 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:322962 player:[708298,374446] fake_json:1 +30 一月 2026 | 18:25:18,871 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:25:20,333 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2105ms +30 一月 2026 | 18:25:20,645 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1776ms +30 一月 2026 | 18:25:50,549 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:890561 player:[821735,412118] fake_json:1 +30 一月 2026 | 18:26:01,630 | INFO | qtp809762318-66 | group.service.GroupService | | updatePlay pid:11 gameId:22 name:1元红中 config:{qiangkong=true, jiangma=2, laizi8=false, tuoguan_active_time=0, qidui=true, di_fen=0, isvip=0, laizi4_hu=true, wuguizhuopaojiabei=true, niao_opt_score=1, hp_no_limit=0, isNonnegative=1, niao=1, game_id=22, AA=0, piao_niao=2, niao_opt=3, maxPlayers=2, fengding_score=2, piao_niao_opt=2, hz_hu=true, qiangkong_niao=true, tuoguan=false, isHidden=0, xi_pai=true, piao2=false, piao1=false, opt=1, auto_piao=false, wuguijiabei=true, tuoguan_active_timeIndex=1, an_chou_score=1000, piao3=false, tuoguan_result_type=0, xi_pai_score=1000} hpData:{limitloot=0, limitInRoom=49000, xipai_rewards_val=100, type=1, anchou_rewardValueType=1, times=1000, xipai_rewardValueType=1, xipai_rewardType=3, limitPump=4, anchou_rewards_val=100, rewards_val=100, limitPlay=1000, robot_room=5, basePump=0, anchou_rewardType=3, tex_times_room=1000, rewards_type=2, rewards_list=[{UpperLimitReward=0, pumpProportion=2000, UpperLimit=1000}], rewardValueType=1} hpOnOff:1 +30 一月 2026 | 18:26:02,964 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: update_play[{user}:112233] time:2688ms +30 一月 2026 | 18:26:12,971 | INFO | qtp809762318-84 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:26:14,379 | INFO | qtp809762318-84 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1952ms +30 一月 2026 | 18:26:14,839 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1918ms +30 一月 2026 | 18:26:20,047 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:26:21,497 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2139ms +30 一月 2026 | 18:26:22,171 | INFO | qtp809762318-84 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2233ms +30 一月 2026 | 18:26:47,405 | INFO | qtp809762318-89 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:26:48,688 | INFO | qtp809762318-89 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1779ms +30 一月 2026 | 18:26:48,965 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1563ms +30 一月 2026 | 18:26:57,803 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:796674 player:[746710,374446] fake_json:1 +30 一月 2026 | 18:26:59,568 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:638556 player:[848960,508402] fake_json:1 +30 一月 2026 | 18:27:01,243 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:808185 player:[864120,540812] fake_json:1 +30 一月 2026 | 18:27:12,670 | INFO | qtp809762318-89 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:27:13,736 | INFO | qtp809762318-89 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1611ms +30 一月 2026 | 18:27:14,258 | INFO | qtp809762318-84 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1641ms +30 一月 2026 | 18:27:20,012 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:27:21,655 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2194ms +30 一月 2026 | 18:27:21,968 | INFO | qtp809762318-89 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2001ms +30 一月 2026 | 18:27:32,367 | ERROR | DefaultQuartzScheduler_Worker-9 | group.job.UpdatePlayRoomJob | | del 空 room:769880 player:[] fake_json: +30 一月 2026 | 18:27:34,005 | INFO | qtp809762318-94 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:27:34,780 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:27:34,967 | INFO | qtp809762318-94 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1460ms +30 一月 2026 | 18:27:35,291 | INFO | qtp809762318-98 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:27:35,924 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1783ms +30 一月 2026 | 18:27:36,392 | INFO | qtp809762318-89 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1693ms +30 一月 2026 | 18:27:36,408 | INFO | qtp809762318-98 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1650ms +30 一月 2026 | 18:27:49,013 | INFO | qtp809762318-97 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:27:50,209 | INFO | qtp809762318-97 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1819ms +30 一月 2026 | 18:27:50,738 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1838ms +30 一月 2026 | 18:27:52,852 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:986517 player:[992762,371993] fake_json:1 +30 一月 2026 | 18:27:55,014 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:491206 player:[508402,412118] fake_json:1 +30 一月 2026 | 18:27:57,618 | ERROR | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | del robot room:731681 player:[774381,460542] fake_json:1 +30 一月 2026 | 18:28:21,913 | INFO | qtp809762318-94 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:28:23,311 | INFO | qtp809762318-94 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1935ms +30 一月 2026 | 18:28:23,557 | INFO | qtp809762318-98 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1525ms +30 一月 2026 | 18:28:27,472 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:464167 player:[864120,750455] fake_json:1 +30 一月 2026 | 18:29:03,448 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:936610 player:[762687,918233] fake_json:1 +30 一月 2026 | 18:29:05,426 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:933900 player:[746710,821735] fake_json:1 +30 一月 2026 | 18:29:05,907 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:933900 player:[746710,821735] fake_json:1 +30 一月 2026 | 18:29:07,413 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:899029 player:[708298,774381] fake_json:1 +30 一月 2026 | 18:29:08,045 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:899029 player:[708298,774381] fake_json:1 +30 一月 2026 | 18:29:08,822 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:899029 player:[708298,774381] fake_json:1 +30 一月 2026 | 18:29:09,567 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:157763 player:[374446,508402] fake_json:1 +30 一月 2026 | 18:29:09,905 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:199857 player:[412118,680619] fake_json:1 +30 一月 2026 | 18:29:10,730 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:199857 player:[412118,680619] fake_json:1 +30 一月 2026 | 18:29:11,826 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:157763 player:[374446,508402] fake_json:1 +30 一月 2026 | 18:29:12,728 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:157763 player:[374446,508402] fake_json:1 +30 一月 2026 | 18:30:04,888 | ERROR | DefaultQuartzScheduler_Worker-9 | group.job.UpdatePlayRoomJob | | del robot room:974551 player:[374446,412118] fake_json:1 +30 一月 2026 | 18:30:06,314 | ERROR | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | del robot room:974551 player:[374446,412118] fake_json:1 +30 一月 2026 | 18:30:18,500 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:229408 player:[918233,680619] fake_json:1 +30 一月 2026 | 18:30:20,278 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:219143 player:[750455,460542] fake_json:1 +30 一月 2026 | 18:30:20,486 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:219143 player:[750455,460542] fake_json:1 +30 一月 2026 | 18:30:35,252 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:650605 player:[746710,992762] fake_json:1 +30 一月 2026 | 18:30:37,249 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:331019 player:[540812,864120] fake_json:1 +30 一月 2026 | 18:30:38,829 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:210943 player:[821735,508402] fake_json:1 +30 一月 2026 | 18:30:39,061 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:210943 player:[821735,508402] fake_json:1 +30 一月 2026 | 18:30:46,774 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:509529 player:[848960,374446] fake_json:1 +30 一月 2026 | 18:31:18,006 | ERROR | DefaultQuartzScheduler_Worker-7 | group.job.UpdatePlayRoomJob | | del robot room:556271 player:[374446,950914] fake_json:1 +30 一月 2026 | 18:31:18,710 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:556271 player:[374446,950914] fake_json:1 +30 一月 2026 | 18:31:21,344 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:633767 player:[746710,371993] fake_json:1 +30 一月 2026 | 18:31:42,091 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:763268 player:[750455,508402] fake_json:1 +30 一月 2026 | 18:31:44,289 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:570837 player:[412118,762687] fake_json:1 +30 一月 2026 | 18:31:46,413 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:347712 player:[821735,774381] fake_json:1 +30 一月 2026 | 18:32:25,428 | ERROR | DefaultQuartzScheduler_Worker-7 | group.job.UpdatePlayRoomJob | | del robot room:282702 player:[371993,992762] fake_json:1 +30 一月 2026 | 18:32:25,610 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:282702 player:[371993,992762] fake_json:1 +30 一月 2026 | 18:32:50,382 | ERROR | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | del robot room:977353 player:[680619,412118] fake_json:1 +30 一月 2026 | 18:32:52,914 | ERROR | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | del robot room:432129 player:[540812,708298] fake_json:1 +30 一月 2026 | 18:33:01,512 | ERROR | DefaultQuartzScheduler_Worker-7 | group.job.UpdatePlayRoomJob | | del robot room:939106 player:[918233,762687] fake_json:1 +30 一月 2026 | 18:33:20,925 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:526201 player:[848960,950914] fake_json:1 +30 一月 2026 | 18:33:57,232 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:735574 player:[746710,508402] fake_json:1 +30 一月 2026 | 18:33:59,382 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:546843 player:[864120,158894] fake_json:1 +30 一月 2026 | 18:34:01,453 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:532437 player:[412118,540812] fake_json:1 +30 一月 2026 | 18:34:02,502 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:532437 player:[412118,540812] fake_json:1 +30 一月 2026 | 18:34:10,605 | ERROR | DefaultQuartzScheduler_Worker-7 | group.job.UpdatePlayRoomJob | | del robot room:462181 player:[680619,460542] fake_json:1 +30 一月 2026 | 18:34:31,576 | ERROR | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | del robot room:155464 player:[848960,158894] fake_json:1 +30 一月 2026 | 18:34:42,027 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:519224 player:[918233,540812] fake_json:1 +30 一月 2026 | 18:35:04,669 | ERROR | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | del robot room:175059 player:[508402,371993] fake_json:1 +30 一月 2026 | 18:35:24,658 | ERROR | DefaultQuartzScheduler_Worker-9 | group.job.UpdatePlayRoomJob | | del robot room:737781 player:[992762,864120] fake_json:1 +30 一月 2026 | 18:35:26,955 | ERROR | DefaultQuartzScheduler_Worker-9 | group.job.UpdatePlayRoomJob | | del robot room:576349 player:[762687,460542] fake_json:1 +30 一月 2026 | 18:35:39,727 | ERROR | DefaultQuartzScheduler_Worker-7 | group.job.UpdatePlayRoomJob | | del robot room:308841 player:[848960,950914] fake_json:1 +30 一月 2026 | 18:36:01,287 | ERROR | DefaultQuartzScheduler_Worker-9 | group.job.UpdatePlayRoomJob | | del robot room:605647 player:[746710,821735] fake_json:1 +30 一月 2026 | 18:36:08,329 | ERROR | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | del robot room:704553 player:[750455,992762] fake_json:1 +30 一月 2026 | 18:36:19,493 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:523274 player:[762687,680619] fake_json:1 +30 一月 2026 | 18:36:21,501 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:406848 player:[540812,950914] fake_json:1 +30 一月 2026 | 18:36:35,770 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:144315 player:[371993,774381] fake_json:1 +30 一月 2026 | 18:37:15,662 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:733190 player:[746710,750455] fake_json:1 +30 一月 2026 | 18:37:27,773 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:876695 player:[680619,774381] fake_json:1 +30 一月 2026 | 18:37:29,699 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:495094 player:[460542,540812] fake_json:1 +30 一月 2026 | 18:37:40,009 | ERROR | DefaultQuartzScheduler_Worker-9 | group.job.UpdatePlayRoomJob | | del robot room:276291 player:[848960,158894] fake_json:1 +30 一月 2026 | 18:37:51,929 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:884970 player:[918233,374446] fake_json:1 +30 一月 2026 | 18:38:23,071 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:453805 player:[460542,950914] fake_json:1 +30 一月 2026 | 18:38:38,192 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:948781 player:[680619,540812] fake_json:1 +30 一月 2026 | 18:38:40,392 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:692266 player:[746710,371993] fake_json:1 +30 一月 2026 | 18:38:54,042 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:269234 player:[848960,158894] fake_json:1 +30 一月 2026 | 18:39:16,803 | INFO | qtp809762318-150 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:2021ms +30 一月 2026 | 18:39:17,421 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:147415 player:[708298,374446] fake_json:1 +30 一月 2026 | 18:39:21,060 | INFO | qtp809762318-163 | group.controller.GroupRoomController | | matchRoom() ==> pid = 11 +30 一月 2026 | 18:39:27,907 | INFO | qtp809762318-163 | taurus.web.WebFilter | | action: match_room[{user}:115777] time:7993ms +30 一月 2026 | 18:39:34,449 | ERROR | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | del robot room:575433 player:[746710,774381] fake_json:1 +30 一月 2026 | 18:39:45,210 | INFO | qtp809762318-172 | taurus.web.WebFilter | | action: join_room[{user}:115777] time:6041ms +30 一月 2026 | 18:39:49,890 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del 空 room:212018 player:[] fake_json: +30 一月 2026 | 18:39:52,421 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:245139 player:[460542,950914] fake_json:1 +30 一月 2026 | 18:39:54,222 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:162941 player:[848960,371993] fake_json:1 +30 一月 2026 | 18:40:26,407 | ERROR | DefaultQuartzScheduler_Worker-9 | group.job.UpdatePlayRoomJob | | del robot room:834507 player:[680619,992762] fake_json:1 +30 一月 2026 | 18:40:28,045 | ERROR | DefaultQuartzScheduler_Worker-9 | group.job.UpdatePlayRoomJob | | del robot room:815109 player:[918233,864120] fake_json:1 +30 一月 2026 | 18:40:29,961 | ERROR | DefaultQuartzScheduler_Worker-9 | group.job.UpdatePlayRoomJob | | del robot room:323888 player:[762687,508402] fake_json:1 +30 一月 2026 | 18:41:00,826 | ERROR | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | del robot room:527261 player:[774381,708298] fake_json:1 +30 一月 2026 | 18:41:01,256 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:527261 player:[774381,708298] fake_json:1 +30 一月 2026 | 18:41:22,377 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:575412 player:[746710,848960] fake_json:1 +30 一月 2026 | 18:41:26,827 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:381917 player:[821735,158894] fake_json:1 +30 一月 2026 | 18:41:52,461 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:582215 player:[371993,774381] fake_json:1 +30 一月 2026 | 18:41:54,803 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:121377 player:[412118,864120] fake_json:1 +30 一月 2026 | 18:42:00,569 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 18:42:00,614 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 18:42:07,103 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:42:09,116 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2804ms +30 一月 2026 | 18:42:09,382 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2495ms +30 一月 2026 | 18:42:13,605 | INFO | qtp809762318-69 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:42:15,102 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2297ms +30 一月 2026 | 18:42:15,765 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1826ms +30 一月 2026 | 18:42:19,046 | INFO | qtp809762318-62 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:42:20,150 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1790ms +30 一月 2026 | 18:42:21,465 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2151ms +30 一月 2026 | 18:42:24,547 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:846488 player:[750455,460542] fake_json:1 +30 一月 2026 | 18:42:26,392 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:42:26,783 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:667936 player:[540812,918233] fake_json:1 +30 一月 2026 | 18:42:27,803 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2161ms +30 一月 2026 | 18:42:28,147 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1965ms +30 一月 2026 | 18:42:29,683 | INFO | qtp809762318-63 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:42:30,850 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1730ms +30 一月 2026 | 18:42:31,566 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1664ms +30 一月 2026 | 18:42:36,023 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:42:37,086 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1576ms +30 一月 2026 | 18:42:37,866 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1717ms +30 一月 2026 | 18:42:39,704 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:42:40,624 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1612ms +30 一月 2026 | 18:42:41,383 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1701ms +30 一月 2026 | 18:42:45,483 | INFO | qtp809762318-63 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:42:46,745 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1970ms +30 一月 2026 | 18:42:48,102 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1789ms +30 一月 2026 | 18:42:48,450 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:111995 player:[992762,821735] fake_json:1 +30 一月 2026 | 18:42:59,502 | INFO | qtp809762318-64 | group.controller.GroupRoomController | | matchRoom() ==> pid = 11 +30 一月 2026 | 18:43:06,044 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:7738ms +30 一月 2026 | 18:43:12,423 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:43:13,905 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2130ms +30 一月 2026 | 18:43:14,263 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2049ms +30 一月 2026 | 18:43:19,154 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:266456 player:[774381,374446] fake_json:1 +30 一月 2026 | 18:43:20,243 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:43:20,301 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del 空 room:165165 player:[] fake_json: +30 一月 2026 | 18:43:20,871 | INFO | qtp809762318-63 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:43:21,449 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1806ms +30 一月 2026 | 18:43:22,224 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1914ms +30 一月 2026 | 18:43:22,345 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2235ms +30 一月 2026 | 18:43:22,569 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:841390 player:[708298,950914] fake_json:1 +30 一月 2026 | 18:43:22,664 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1985ms +30 一月 2026 | 18:43:25,124 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:233183 player:[412118,762687] fake_json:1 +30 一月 2026 | 18:43:26,605 | INFO | qtp809762318-64 | group.controller.GroupRoomController | | matchRoom() ==> pid = 11 +30 一月 2026 | 18:43:27,101 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:112181 player:[848960,864120] fake_json:1 +30 一月 2026 | 18:43:27,181 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:112181 player:[848960,864120] fake_json:1 +30 一月 2026 | 18:43:27,583 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:269586 player:[680619,158894] fake_json:1 +30 一月 2026 | 18:43:29,188 | ERROR | DefaultQuartzScheduler_Worker-9 | group.job.UpdatePlayRoomJob | | del robot room:269586 player:[680619,158894] fake_json:1 +30 一月 2026 | 18:43:29,762 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:112181 player:[848960,864120] fake_json:1 +30 一月 2026 | 18:43:32,711 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:7204ms +30 一月 2026 | 18:43:39,759 | INFO | qtp809762318-63 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:43:41,134 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1893ms +30 一月 2026 | 18:43:41,719 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1829ms +30 一月 2026 | 18:43:46,296 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:43:47,498 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1941ms +30 一月 2026 | 18:43:48,109 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1744ms +30 一月 2026 | 18:43:52,791 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del 空 room:337378 player:[] fake_json: +30 一月 2026 | 18:43:54,737 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:813659 player:[950914,864120] fake_json:1 +30 一月 2026 | 18:43:57,026 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:542746 player:[918233,540812] fake_json:1 +30 一月 2026 | 18:43:58,981 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:432839 player:[460542,371993] fake_json:1 +30 一月 2026 | 18:43:59,033 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:432839 player:[460542,371993] fake_json:1 +30 一月 2026 | 18:44:16,310 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:44:17,267 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1392ms +30 一月 2026 | 18:44:17,834 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1333ms +30 一月 2026 | 18:44:19,451 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:44:20,458 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1438ms +30 一月 2026 | 18:44:21,395 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1756ms +30 一月 2026 | 18:44:25,388 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:44:26,751 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1871ms +30 一月 2026 | 18:44:27,230 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1782ms +30 一月 2026 | 18:44:29,328 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:595043 player:[848960,750455] fake_json:1 +30 一月 2026 | 18:44:31,255 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:460346 player:[708298,158894] fake_json:1 +30 一月 2026 | 18:44:33,472 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:138873 player:[864120,540812] fake_json:1 +30 一月 2026 | 18:44:33,764 | ERROR | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | del robot room:636235 player:[774381,412118] fake_json:1 +30 一月 2026 | 18:44:34,701 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:44:35,878 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1852ms +30 一月 2026 | 18:44:36,251 | ERROR | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | del robot room:138873 player:[864120,540812] fake_json:1 +30 一月 2026 | 18:44:36,435 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1820ms +30 一月 2026 | 18:44:40,170 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:44:41,251 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1524ms +30 一月 2026 | 18:44:41,726 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1393ms +30 一月 2026 | 18:44:46,057 | ERROR | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | del robot room:977981 player:[848960,992762] fake_json:1 +30 一月 2026 | 18:44:46,495 | INFO | qtp809762318-62 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:44:47,472 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1549ms +30 一月 2026 | 18:44:47,791 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:44:47,992 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1496ms +30 一月 2026 | 18:44:48,868 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1637ms +30 一月 2026 | 18:44:49,558 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1573ms +30 一月 2026 | 18:44:57,574 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:44:58,621 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1781ms +30 一月 2026 | 18:44:59,420 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1904ms +30 一月 2026 | 18:45:03,520 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:572233 player:[371993,821735] fake_json:1 +30 一月 2026 | 18:45:05,420 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:399352 player:[680619,460542] fake_json:1 +30 一月 2026 | 18:45:10,574 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:45:11,716 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1723ms +30 一月 2026 | 18:45:12,593 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1913ms +30 一月 2026 | 18:45:23,534 | INFO | qtp809762318-62 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:45:24,614 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1674ms +30 一月 2026 | 18:45:25,334 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1761ms +30 一月 2026 | 18:45:30,861 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:936616 player:[848960,992762] fake_json:1 +30 一月 2026 | 18:45:33,295 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:918146 player:[864120,708298] fake_json:1 +30 一月 2026 | 18:45:34,075 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:45:35,377 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1862ms +30 一月 2026 | 18:45:35,416 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:469096 player:[848960,918233] fake_json:1 +30 一月 2026 | 18:45:35,594 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:469096 player:[848960,918233] fake_json:1 +30 一月 2026 | 18:45:35,774 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1772ms +30 一月 2026 | 18:45:39,041 | INFO | qtp809762318-62 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:45:40,263 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1861ms +30 一月 2026 | 18:45:40,860 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1820ms +30 一月 2026 | 18:45:47,115 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:45:48,306 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1817ms +30 一月 2026 | 18:45:49,837 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1825ms +30 一月 2026 | 18:45:55,539 | INFO | qtp809762318-66 | group.controller.GroupRoomController | | matchRoom() ==> pid = 11 +30 一月 2026 | 18:45:59,534 | INFO | qtp809762318-62 | group.controller.GroupRoomController | | matchRoom() ==> pid = 11 +30 一月 2026 | 18:46:02,262 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: match_room[{user}:115777] time:7782ms +30 一月 2026 | 18:46:04,775 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: match_room[{user}:177475] time:6156ms +30 一月 2026 | 18:46:13,215 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:46:14,841 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2315ms +30 一月 2026 | 18:46:15,160 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2026ms +30 一月 2026 | 18:46:15,380 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:905990 player:[540812,762687] fake_json:1 +30 一月 2026 | 18:46:16,120 | ERROR | DefaultQuartzScheduler_Worker-7 | group.job.UpdatePlayRoomJob | | del robot room:905990 player:[540812,762687] fake_json:1 +30 一月 2026 | 18:46:17,679 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:634148 player:[374446,371993] fake_json:1 +30 一月 2026 | 18:46:18,269 | ERROR | DefaultQuartzScheduler_Worker-7 | group.job.UpdatePlayRoomJob | | del robot room:634148 player:[374446,371993] fake_json:1 +30 一月 2026 | 18:46:19,953 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del robot room:339487 player:[750455,774381] fake_json:1 +30 一月 2026 | 18:46:20,119 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:339487 player:[750455,774381] fake_json:1 +30 一月 2026 | 18:46:20,713 | ERROR | DefaultQuartzScheduler_Worker-7 | group.job.UpdatePlayRoomJob | | del robot room:339487 player:[750455,774381] fake_json:1 +30 一月 2026 | 18:46:26,802 | INFO | qtp809762318-66 | group.controller.GroupRoomController | | matchRoom() ==> pid = 11 +30 一月 2026 | 18:46:33,039 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:46:34,049 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: match_room[{user}:177475] time:8529ms +30 一月 2026 | 18:46:34,616 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2311ms +30 一月 2026 | 18:46:34,821 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1957ms +30 一月 2026 | 18:46:41,485 | INFO | qtp809762318-94 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:46:42,702 | INFO | qtp809762318-94 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1861ms +30 一月 2026 | 18:46:43,079 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1751ms +30 一月 2026 | 18:46:43,693 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:927946 player:[950914,821735] fake_json:1 +30 一月 2026 | 18:46:45,706 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:578004 player:[412118,158894] fake_json:1 +30 一月 2026 | 18:47:23,155 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:948706 player:[750455,848960] fake_json:1 +30 一月 2026 | 18:47:24,894 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:329171 player:[992762,864120] fake_json:1 +30 一月 2026 | 18:47:26,743 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:155915 player:[918233,680619] fake_json:1 +30 一月 2026 | 18:47:26,814 | INFO | qtp809762318-94 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:47:27,399 | ERROR | DefaultQuartzScheduler_Worker-5 | group.job.UpdatePlayRoomJob | | del robot room:155915 player:[918233,680619] fake_json:1 +30 一月 2026 | 18:47:27,901 | INFO | qtp809762318-94 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1591ms +30 一月 2026 | 18:47:28,286 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1466ms +30 一月 2026 | 18:47:44,832 | INFO | qtp809762318-62 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:47:46,287 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2194ms +30 一月 2026 | 18:47:46,687 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2056ms +30 一月 2026 | 18:47:49,988 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:964398 player:[762687,374446] fake_json:1 +30 一月 2026 | 18:47:51,950 | INFO | qtp809762318-62 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:47:52,586 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:871264 player:[158894,821735] fake_json:1 +30 一月 2026 | 18:47:52,907 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:871264 player:[158894,821735] fake_json:1 +30 一月 2026 | 18:47:53,587 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2378ms +30 一月 2026 | 18:47:53,995 | INFO | qtp809762318-94 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2163ms +30 一月 2026 | 18:48:08,028 | INFO | qtp809762318-62 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:48:09,309 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2018ms +30 一月 2026 | 18:48:09,629 | INFO | qtp809762318-94 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1765ms +30 一月 2026 | 18:48:20,429 | INFO | qtp809762318-104 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:48:21,967 | INFO | qtp809762318-104 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2293ms +30 一月 2026 | 18:48:22,549 | INFO | qtp809762318-94 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2182ms +30 一月 2026 | 18:48:30,871 | ERROR | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | del robot room:978176 player:[371993,950914] fake_json:1 +30 一月 2026 | 18:48:31,107 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:978176 player:[371993,950914] fake_json:1 +30 一月 2026 | 18:48:33,530 | ERROR | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | del robot room:433036 player:[848960,774381] fake_json:1 +30 一月 2026 | 18:48:33,706 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:433036 player:[848960,774381] fake_json:1 +30 一月 2026 | 18:48:35,909 | ERROR | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | del robot room:210543 player:[918233,708298] fake_json:1 +30 一月 2026 | 18:48:36,211 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:210543 player:[918233,708298] fake_json:1 +30 一月 2026 | 18:48:36,595 | ERROR | DefaultQuartzScheduler_Worker-1 | group.job.UpdatePlayRoomJob | | del 空 room:714878 player:[] fake_json: +30 一月 2026 | 18:48:37,306 | INFO | qtp809762318-94 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:48:38,546 | INFO | qtp809762318-94 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1785ms +30 一月 2026 | 18:48:39,666 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:2000ms +30 一月 2026 | 18:48:42,670 | INFO | qtp809762318-104 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:48:44,389 | INFO | qtp809762318-104 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2479ms +30 一月 2026 | 18:48:44,827 | INFO | qtp809762318-94 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2430ms +30 一月 2026 | 18:48:50,506 | INFO | qtp809762318-62 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:48:52,112 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:2320ms +30 一月 2026 | 18:48:52,945 | INFO | qtp809762318-104 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:2382ms +30 一月 2026 | 18:49:04,965 | INFO | qtp809762318-104 | group.controller.GroupRoomController | | matchRoom() ==> pid = 11 +30 一月 2026 | 18:49:05,044 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:586657 player:[762687,680619] fake_json:1 +30 一月 2026 | 18:49:05,677 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:586657 player:[762687,680619] fake_json:1 +30 一月 2026 | 18:49:07,203 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:545785 player:[374446,158894] fake_json:1 +30 一月 2026 | 18:49:07,943 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | del robot room:545785 player:[374446,158894] fake_json:1 +30 一月 2026 | 18:49:12,521 | INFO | qtp809762318-104 | taurus.web.WebFilter | | action: match_room[{user}:115777] time:8803ms +30 一月 2026 | 18:49:15,661 | INFO | qtp809762318-104 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:49:17,077 | INFO | qtp809762318-104 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1916ms +30 一月 2026 | 18:49:17,845 | INFO | qtp809762318-107 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2130ms +30 一月 2026 | 18:49:21,996 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:786240 player:[950914,864120] fake_json:1 +30 一月 2026 | 18:49:25,275 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:456445 player:[460542,992762] fake_json:1 +30 一月 2026 | 18:49:32,755 | INFO | qtp809762318-94 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:49:34,122 | INFO | qtp809762318-94 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2046ms +30 一月 2026 | 18:49:34,461 | INFO | qtp809762318-104 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1880ms +30 一月 2026 | 18:49:43,879 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del robot room:785085 player:[774381,371993] fake_json:1 +30 一月 2026 | 18:49:59,118 | INFO | qtp809762318-94 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:49:59,439 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del 空 room:402166 player:[] fake_json: +30 一月 2026 | 18:50:00,186 | INFO | qtp809762318-94 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1583ms +30 一月 2026 | 18:50:00,280 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del 空 room:344001 player:[] fake_json: +30 一月 2026 | 18:50:00,796 | INFO | qtp809762318-107 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:50:01,809 | INFO | qtp809762318-107 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1612ms +30 一月 2026 | 18:50:02,117 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | del robot room:616120 player:[158894,762687] fake_json:1 +30 一月 2026 | 18:50:11,418 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:491406 player:[708298,750455] fake_json:1 +30 一月 2026 | 18:50:13,396 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:471598 player:[848960,918233] fake_json:1 +30 一月 2026 | 18:50:19,642 | INFO | qtp809762318-104 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1560ms +30 一月 2026 | 18:50:23,317 | ERROR | DefaultQuartzScheduler_Worker-7 | group.job.UpdatePlayRoomJob | | del robot room:223381 player:[460542,821735] fake_json:1 +30 一月 2026 | 18:50:28,204 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 18:50:28,251 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 18:50:34,139 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2144ms +30 一月 2026 | 18:50:35,096 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:312439 player:[950914,864120] fake_json:1 +30 一月 2026 | 18:50:36,961 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:149352 player:[680619,774381] fake_json:1 +30 一月 2026 | 18:50:39,261 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:109510 player:[371993,992762] fake_json:1 +30 一月 2026 | 18:51:12,477 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:863778 player:[864120,708298] fake_json:1 +30 一月 2026 | 18:51:13,184 | INFO | qtp809762318-68 | group.service.GroupService | | updatePlay pid:11 gameId:22 name:1元红中 config:{qiangkong=true, jiangma=2, laizi8=false, tuoguan_active_time=0, qidui=true, di_fen=0, isvip=0, laizi4_hu=true, wuguizhuopaojiabei=true, niao_opt_score=1, hp_no_limit=0, isNonnegative=1, niao=1, game_id=22, AA=0, piao_niao=2, niao_opt=3, maxPlayers=2, fengding_score=2, piao_niao_opt=2, hz_hu=true, qiangkong_niao=true, tuoguan=false, isHidden=0, xi_pai=true, piao2=false, piao1=false, opt=1, auto_piao=false, wuguijiabei=true, tuoguan_active_timeIndex=1, an_chou_score=1000, piao3=false, tuoguan_result_type=0, xi_pai_score=1000} hpData:{limitloot=0, limitInRoom=49000, xipai_rewards_val=100, type=1, anchou_rewardValueType=1, times=1000, xipai_rewardValueType=1, xipai_rewardType=3, limitPump=4, anchou_rewards_val=100, rewards_val=100, limitPlay=1000, robot_room=0, basePump=0, anchou_rewardType=3, tex_times_room=1000, rewards_type=2, rewards_list=[{UpperLimitReward=0, pumpProportion=2000, UpperLimit=1000}], rewardValueType=1} hpOnOff:1 +30 一月 2026 | 18:51:14,838 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: update_play[{user}:112233] time:3193ms +30 一月 2026 | 18:51:14,879 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | del robot room:127697 player:[158894,848960] fake_json:1 +30 一月 2026 | 18:51:17,737 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:51:18,919 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2042ms +30 一月 2026 | 18:51:19,187 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1818ms +30 一月 2026 | 18:51:35,142 | INFO | qtp809762318-67 | group.service.GroupService | | updatePlay pid:10 gameId:10 name:1元长麻 config:{menqing=true, no_jiang=true, tuoguan_active_time=0, niaofen_score=1, niao_type=0, jiejiegao=true, two_pair=true, isvip=0, native_hu=true, hp_no_limit=0, isNonnegative=1, banyiquan=true, zhuangxian=true, niao=6, game_id=10, yizhihua=true, difen_score=2, AA=0, piao_niao=2, santong=false, maxPlayers=2, zhongtuliuliushun=true, fengding_score=2, four_win=true, piao_niao_opt=2, zimo=false, fengding=false, tuoguan=false, isHidden=0, xi_pai=true, piao2=false, piao1=false, opt=2, queyimen=true, auto_piao=false, an_chou_score=1000, tuoguan_active_timeIndex=1, piao3=false, xi_pai_score=1000, zhongtusixi=true, tuoguan_result_type=0, niaofen_opt=0, kai_gong=1} hpData:{limitloot=0, limitInRoom=5000, xipai_rewards_val=100, type=1, anchou_rewardValueType=1, times=1000, xipai_rewardValueType=1, xipai_rewardType=3, limitPump=4, anchou_rewards_val=100, rewards_val=100, limitPlay=1000, robot_room=0, basePump=0, anchou_rewardType=3, tex_times_room=1000, rewards_type=2, rewards_list=[{UpperLimitReward=0, pumpProportion=2000, UpperLimit=1000}], rewardValueType=1} hpOnOff:1 +30 一月 2026 | 18:51:36,678 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: update_play[{user}:112233] time:2933ms +30 一月 2026 | 18:51:40,088 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:51:41,325 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1833ms +30 一月 2026 | 18:51:42,001 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1902ms +30 一月 2026 | 18:51:42,596 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:51:44,112 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2137ms +30 一月 2026 | 18:51:44,559 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2128ms +30 一月 2026 | 18:51:47,348 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:51:48,834 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:2294ms +30 一月 2026 | 18:51:49,610 | INFO | qtp809762318-63 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:51:49,630 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:2275ms +30 一月 2026 | 18:51:50,868 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1976ms +30 一月 2026 | 18:51:51,375 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1896ms +30 一月 2026 | 18:51:54,110 | INFO | qtp809762318-68 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:51:55,853 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2359ms +30 一月 2026 | 18:51:55,950 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1985ms +30 一月 2026 | 18:51:58,514 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:51:59,997 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2190ms +30 一月 2026 | 18:52:00,391 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2110ms +30 一月 2026 | 18:52:02,748 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:52:04,214 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2187ms +30 一月 2026 | 18:52:04,790 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2058ms +30 一月 2026 | 18:52:16,070 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:52:17,274 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1991ms +30 一月 2026 | 18:52:17,670 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:52:18,790 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1739ms +30 一月 2026 | 18:52:19,868 | INFO | qtp809762318-63 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:52:21,428 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2110ms +30 一月 2026 | 18:52:22,831 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1512ms +30 一月 2026 | 18:52:23,748 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1712ms +30 一月 2026 | 18:52:25,849 | INFO | qtp809762318-68 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:52:27,372 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2148ms +30 一月 2026 | 18:52:27,754 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1850ms +30 一月 2026 | 18:52:32,110 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:52:33,473 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1947ms +30 一月 2026 | 18:52:34,237 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2052ms +30 一月 2026 | 18:52:34,973 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:52:35,990 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1649ms +30 一月 2026 | 18:52:36,693 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1729ms +30 一月 2026 | 18:53:00,190 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:53:01,968 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2336ms +30 一月 2026 | 18:53:02,470 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1972ms +30 一月 2026 | 18:53:16,191 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:53:17,080 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1534ms +30 一月 2026 | 18:53:17,644 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1325ms +30 一月 2026 | 18:53:27,074 | INFO | qtp809762318-63 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:53:28,327 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1687ms +30 一月 2026 | 18:53:28,758 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1424ms +30 一月 2026 | 18:53:41,487 | INFO | qtp809762318-67 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 +30 一月 2026 | 18:53:47,997 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: match_room[{user}:177475] time:7358ms +30 一月 2026 | 18:56:03,080 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 18:56:04,354 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:2017ms +30 一月 2026 | 18:58:47,986 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 18:58:48,034 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 18:58:51,252 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:2433ms +30 一月 2026 | 18:59:00,217 | INFO | qtp809762318-69 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:59:01,638 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2193ms +30 一月 2026 | 18:59:01,771 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1796ms +30 一月 2026 | 18:59:35,162 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del 空 room:639027 player:[] fake_json: +30 一月 2026 | 18:59:35,442 | INFO | qtp809762318-69 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:59:36,526 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 18:59:37,124 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2359ms +30 一月 2026 | 18:59:37,991 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2070ms +30 一月 2026 | 18:59:41,327 | INFO | qtp809762318-63 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:59:42,783 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2088ms +30 一月 2026 | 18:59:43,248 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1935ms +30 一月 2026 | 18:59:45,345 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 18:59:47,164 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error java.net.ConnectException: Connection refused: connect at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) @@ -47,9 +1183,101 @@ java.net.ConnectException: Connection refused: connect at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:15:10,482 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect -24 一月 2026 | 18:15:32,972 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:15:35,413 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +30 一月 2026 | 18:59:47,169 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +30 一月 2026 | 18:59:47,991 | INFO | qtp809762318-70 | taurus.web.WebFilter | | action: del__room[{user}:112233] time:1601ms +30 一月 2026 | 18:59:51,607 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: del__room[{user}:112233] time:1616ms +30 一月 2026 | 18:59:53,664 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 18:59:54,744 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1653ms +30 一月 2026 | 18:59:55,306 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1707ms +30 一月 2026 | 18:59:59,826 | WARN | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | robot not enough, cur used robot 179 +30 一月 2026 | 19:00:00,368 | WARN | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | robot not enough, cur used robot 180 +30 一月 2026 | 19:00:03,032 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:00:03,591 | INFO | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | robot:989941 head:https://thirdwx.qlogo.cn/mmopen/vi_32/EaLU4ia4dh5SYiaEtgTZplfUBPL3gGYiaF013XdEHTgoFoT04eogVFRCE5jwWiaM5zGzYarlZ3qaR9EpoWq2xCMHWg/132 md5:92aa8465238754d908d39ca020b5d2c5 +30 一月 2026 | 19:00:03,591 | INFO | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | create robot account:{"acc":"989941","nick":"幸福快乐","regTime":9999,"password":"f38640ab8f3af8930cdcb4ba945d3a6e","sex":1,"mng":0,"reg_time":1769770803,"id":989941,"portrait":"https://thirdwx.qlogo.cn/mmopen/vi_32/EaLU4ia4dh5SYiaEtgTZplfUBPL3gGYiaF013XdEHTgoFoT04eogVFRCE5jwWiaM5zGzYarlZ3qaR9EpoWq2xCMHWg/132","diamo":0,"type":0} password:xx123456xx +30 一月 2026 | 19:00:03,742 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | +java.sql.SQLException: Field 'jiqiren' doesn't have a default value + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.taurus.core.plugin.database.Db.__executeUpdate(Db.java:255) + at com.taurus.core.plugin.database.Db.insert(Db.java:325) + at com.group.job.UpdatePlayRoomJob.create_register(UpdatePlayRoomJob.java:860) + at com.group.job.UpdatePlayRoomJob.createRobot(UpdatePlayRoomJob.java:672) + at com.group.job.UpdatePlayRoomJob.getRobot(UpdatePlayRoomJob.java:571) + at com.group.job.UpdatePlayRoomJob.updateRedisMap(UpdatePlayRoomJob.java:499) + at com.group.job.UpdatePlayRoomJob.createGroupRoom(UpdatePlayRoomJob.java:460) + at com.group.job.UpdatePlayRoomJob.createPlayRoom(UpdatePlayRoomJob.java:129) + at com.group.job.UpdatePlayRoomJob.execute(UpdatePlayRoomJob.java:555) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +30 一月 2026 | 19:00:03,986 | INFO | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | robot:211955 head:https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTLmVEibQRGo6gxd6wrqVCxqgPbq31EOvDZBvf9k1tmBZxhX4B4hHV3zHaAFhvAy86aQp4jibTibWuN3w/132 md5:bdc14a32ffd27abcfa74d6520ba1f095 +30 一月 2026 | 19:00:03,987 | INFO | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | create robot account:{"acc":"211955","nick":"余生有你足够","regTime":9999,"password":"f38640ab8f3af8930cdcb4ba945d3a6e","sex":1,"mng":0,"reg_time":1769770803,"id":211955,"portrait":"https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTLmVEibQRGo6gxd6wrqVCxqgPbq31EOvDZBvf9k1tmBZxhX4B4hHV3zHaAFhvAy86aQp4jibTibWuN3w/132","diamo":0,"type":0} password:xx123456xx +30 一月 2026 | 19:00:04,048 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | +java.sql.SQLException: Field 'jiqiren' doesn't have a default value + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.taurus.core.plugin.database.Db.__executeUpdate(Db.java:255) + at com.taurus.core.plugin.database.Db.insert(Db.java:325) + at com.group.job.UpdatePlayRoomJob.create_register(UpdatePlayRoomJob.java:860) + at com.group.job.UpdatePlayRoomJob.createRobot(UpdatePlayRoomJob.java:672) + at com.group.job.UpdatePlayRoomJob.getRobot(UpdatePlayRoomJob.java:571) + at com.group.job.UpdatePlayRoomJob.updateRedisMap(UpdatePlayRoomJob.java:499) + at com.group.job.UpdatePlayRoomJob.createGroupRoom(UpdatePlayRoomJob.java:460) + at com.group.job.UpdatePlayRoomJob.createPlayRoom(UpdatePlayRoomJob.java:129) + at com.group.job.UpdatePlayRoomJob.execute(UpdatePlayRoomJob.java:555) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +30 一月 2026 | 19:00:04,308 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1983ms +30 一月 2026 | 19:00:04,786 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1852ms +30 一月 2026 | 19:00:07,455 | INFO | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | robot:202813 head:https://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83eoXk9ziaoOx64sPj8D4GaZSXx47aKW3LtpibYKevRu3BrgLK1ddP2e1yhEn00PrbjkvEn1x7OhqROzw/132 md5:787d66f3fdfa8df70795629c62a3a850 +30 一月 2026 | 19:00:07,512 | INFO | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | robot:202813 head:https://thirdwx.qlogo.cn/mmopen/vi_32/Grv8dSOhHgib1RozSKEcDOjebGibiaR46U9I9ph3G0zb7T4khMib1OTKCCjicosltTDBxSL8ibfaGMTvyPfbE3hq3U3Q/132 md5:787d66f3fdfa8df70795629c62a3a850 +30 一月 2026 | 19:00:07,561 | INFO | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | robot:202813 head:https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTIxUHqiaP16zGriagiaAQWsicFHDs7wgpZicWxG6J5eia8XHiaib4jYLDy3SlN3r40r2S4gWvMFwiaiclRt8S3g/132 md5:c940797165552a353235a5c3cd05e221 +30 一月 2026 | 19:00:07,561 | INFO | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | create robot account:{"acc":"202813","nick":"落笔映惆怅丶","regTime":9999,"password":"f38640ab8f3af8930cdcb4ba945d3a6e","sex":1,"mng":0,"reg_time":1769770807,"id":202813,"portrait":"https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTIxUHqiaP16zGriagiaAQWsicFHDs7wgpZicWxG6J5eia8XHiaib4jYLDy3SlN3r40r2S4gWvMFwiaiclRt8S3g/132","diamo":0,"type":0} password:xx123456xx +30 一月 2026 | 19:00:07,642 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | +java.sql.SQLException: Field 'jiqiren' doesn't have a default value + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.taurus.core.plugin.database.Db.__executeUpdate(Db.java:255) + at com.taurus.core.plugin.database.Db.insert(Db.java:325) + at com.group.job.UpdatePlayRoomJob.create_register(UpdatePlayRoomJob.java:860) + at com.group.job.UpdatePlayRoomJob.createRobot(UpdatePlayRoomJob.java:672) + at com.group.job.UpdatePlayRoomJob.getRobot(UpdatePlayRoomJob.java:593) + at com.group.job.UpdatePlayRoomJob.updateRedisMap(UpdatePlayRoomJob.java:499) + at com.group.job.UpdatePlayRoomJob.createGroupRoom(UpdatePlayRoomJob.java:460) + at com.group.job.UpdatePlayRoomJob.createPlayRoom(UpdatePlayRoomJob.java:129) + at com.group.job.UpdatePlayRoomJob.execute(UpdatePlayRoomJob.java:555) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +30 一月 2026 | 19:00:10,863 | INFO | qtp809762318-69 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:00:12,006 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1784ms +30 一月 2026 | 19:00:15,730 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1713ms +30 一月 2026 | 19:00:15,746 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +30 一月 2026 | 19:00:16,904 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:00:17,386 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101999 +30 一月 2026 | 19:00:18,917 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error java.net.ConnectException: Connection refused: connect at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) @@ -63,9 +1291,71 @@ java.net.ConnectException: Connection refused: connect at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:15:35,429 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect -24 一月 2026 | 18:15:57,875 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:16:00,417 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +30 一月 2026 | 19:00:18,919 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +30 一月 2026 | 19:00:18,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:796902 +30 一月 2026 | 19:00:19,009 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:00:19,277 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:00:19,428 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:00:19,428 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:00:19,429 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:00:19,608 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:00:19,848 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:00:19,985 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:00:20,050 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:00:20,050 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3903000 +30 一月 2026 | 19:00:20,050 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:00:20,050 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:00:20,267 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:00:20,528 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@739ed90a +30 一月 2026 | 19:00:20,765 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1758ms +30 一月 2026 | 19:00:20,790 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:00:20,943 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:00:21,744 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1824ms +30 一月 2026 | 19:00:23,836 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:00:25,056 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1846ms +30 一月 2026 | 19:00:25,587 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1830ms +30 一月 2026 | 19:00:54,543 | INFO | qtp809762318-64 | group.service.GroupService | | updatePlay pid:10 gameId:10 name:1元长麻 config:{menqing=true, no_jiang=true, tuoguan_active_time=0, niaofen_score=1, niao_type=0, jiejiegao=true, two_pair=true, isvip=0, native_hu=true, hp_no_limit=0, isNonnegative=1, banyiquan=true, zhuangxian=true, niao=6, game_id=10, yizhihua=true, difen_score=2, AA=0, piao_niao=2, santong=false, maxPlayers=2, zhongtuliuliushun=true, fengding_score=2, four_win=true, piao_niao_opt=2, zimo=false, fengding=false, tuoguan=false, isHidden=0, xi_pai=true, piao2=false, piao1=false, opt=2, queyimen=true, auto_piao=false, an_chou_score=1000, tuoguan_active_timeIndex=1, piao3=false, xi_pai_score=1000, zhongtusixi=true, tuoguan_result_type=0, niaofen_opt=0, kai_gong=1} hpData:{limitloot=0, limitInRoom=5000, xipai_rewards_val=100, type=1, anchou_rewardValueType=1, times=1000, xipai_rewardValueType=1, xipai_rewardType=3, limitPump=4, anchou_rewards_val=100, rewards_val=100, limitPlay=1000, robot_room=0, basePump=0, anchou_rewardType=3, tex_times_room=1000, rewards_type=2, rewards_list=[{UpperLimitReward=0, pumpProportion=2000, UpperLimit=1000}], rewardValueType=1} hpOnOff:1 +30 一月 2026 | 19:00:56,155 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: update_play[{user}:112233] time:3114ms +30 一月 2026 | 19:01:06,798 | INFO | qtp809762318-63 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:01:07,864 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1640ms +30 一月 2026 | 19:01:08,226 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:01:09,129 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1459ms +30 一月 2026 | 19:01:12,690 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1583ms +30 一月 2026 | 19:01:24,917 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:01:25,996 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1890ms +30 一月 2026 | 19:01:28,754 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:01:29,920 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1710ms +30 一月 2026 | 19:01:30,335 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1670ms +30 一月 2026 | 19:01:33,359 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1728ms +30 一月 2026 | 19:01:33,400 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:01:34,699 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1807ms +30 一月 2026 | 19:01:34,931 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1599ms +30 一月 2026 | 19:01:39,313 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:01:40,595 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1838ms +30 一月 2026 | 19:01:41,036 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1705ms +30 一月 2026 | 19:01:47,259 | INFO | qtp809762318-70 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:01:48,715 | INFO | qtp809762318-70 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2056ms +30 一月 2026 | 19:01:49,049 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1680ms +30 一月 2026 | 19:01:51,457 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:01:53,005 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2280ms +30 一月 2026 | 19:01:53,013 | INFO | qtp809762318-70 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:01:53,643 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2345ms +30 一月 2026 | 19:01:54,436 | INFO | qtp809762318-70 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:2239ms +30 一月 2026 | 19:01:56,035 | INFO | qtp809762318-63 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:01:57,595 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2318ms +30 一月 2026 | 19:01:57,683 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1921ms +30 一月 2026 | 19:01:58,216 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:2125ms +30 一月 2026 | 19:02:04,796 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_partner_stat[{user}:115777] time:3303ms +30 一月 2026 | 19:02:50,589 | INFO | qtp809762318-70 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:02:51,861 | INFO | qtp809762318-70 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1880ms +30 一月 2026 | 19:02:52,304 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1882ms +30 一月 2026 | 19:02:56,452 | INFO | qtp809762318-63 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 +30 一月 2026 | 19:03:02,047 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:6542ms +30 一月 2026 | 19:03:18,660 | INFO | qtp809762318-63 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 +30 一月 2026 | 19:03:22,664 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:4993ms +30 一月 2026 | 19:03:26,841 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:03:27,482 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101999 +30 一月 2026 | 19:03:28,734 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error java.net.ConnectException: Connection refused: connect at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) @@ -79,9 +1369,43 @@ java.net.ConnectException: Connection refused: connect at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:16:00,431 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect -24 一月 2026 | 18:16:23,002 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:16:25,467 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +30 一月 2026 | 19:03:28,735 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +30 一月 2026 | 19:03:28,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:412846 +30 一月 2026 | 19:03:29,011 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] +30 一月 2026 | 19:03:29,182 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] +30 一月 2026 | 19:03:29,301 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:03:29,301 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:03:29,301 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:03:29,777 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:03:29,960 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:03:30,026 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:03:30,026 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3903000 +30 一月 2026 | 19:03:30,026 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:03:30,026 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:03:30,248 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:03:30,544 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@739ed90a +30 一月 2026 | 19:03:30,776 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:03:30,894 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:03:41,446 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:412846 +30 一月 2026 | 19:03:41,489 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] +30 一月 2026 | 19:03:41,697 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] +30 一月 2026 | 19:03:41,832 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:03:41,832 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:03:41,832 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:03:42,444 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:03:42,597 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:03:42,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:03:42,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:18732000 +30 一月 2026 | 19:03:42,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:03:42,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:03:42,794 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:03:43,070 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1a76d54f +30 一月 2026 | 19:03:43,301 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:03:43,445 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:03:44,498 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +30 一月 2026 | 19:03:45,443 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:03:45,774 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 +30 一月 2026 | 19:03:47,447 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error java.net.ConnectException: Connection refused: connect at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) @@ -95,11 +1419,28 @@ java.net.ConnectException: Connection refused: connect at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:16:25,470 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect -24 一月 2026 | 18:16:32,954 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -24 一月 2026 | 18:16:33,005 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -24 一月 2026 | 18:16:34,448 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:16:37,084 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +30 一月 2026 | 19:03:47,451 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +30 一月 2026 | 19:03:47,457 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:105910 +30 一月 2026 | 19:03:47,500 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:03:47,698 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:03:47,805 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:03:47,805 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:03:47,805 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:03:48,140 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:03:48,246 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:03:48,289 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:03:48,289 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:18732000 +30 一月 2026 | 19:03:48,289 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:03:48,289 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:03:48,424 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:03:48,625 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1a76d54f +30 一月 2026 | 19:03:48,860 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:03:48,972 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:03:56,396 | INFO | qtp809762318-70 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 +30 一月 2026 | 19:04:02,397 | INFO | qtp809762318-70 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:7305ms +30 一月 2026 | 19:04:18,679 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:04:19,544 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 +30 一月 2026 | 19:04:20,444 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error java.net.ConnectException: Connection refused: connect at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) @@ -113,9 +1454,45 @@ java.net.ConnectException: Connection refused: connect at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:16:37,088 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect -24 一月 2026 | 18:16:58,964 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:17:01,465 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +30 一月 2026 | 19:04:20,445 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +30 一月 2026 | 19:04:21,648 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:412846 +30 一月 2026 | 19:04:21,688 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] +30 一月 2026 | 19:04:21,924 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] +30 一月 2026 | 19:04:22,102 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:04:22,103 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:04:22,103 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:04:22,638 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:04:22,756 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:04:22,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:04:22,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:18732000 +30 一月 2026 | 19:04:22,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:04:22,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:04:23,056 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:04:23,476 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1a76d54f +30 一月 2026 | 19:04:23,715 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:04:23,842 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:04:34,876 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:412846 +30 一月 2026 | 19:04:34,928 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:04:35,247 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:04:35,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:04:35,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:04:35,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:04:35,557 | INFO | qtp809762318-67 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 +30 一月 2026 | 19:04:35,875 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:04:36,116 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:04:36,203 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:04:36,203 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3903000 +30 一月 2026 | 19:04:36,203 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:04:36,203 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:04:36,445 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:04:36,717 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@739ed90a +30 一月 2026 | 19:04:37,067 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:04:37,237 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:04:38,123 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +30 一月 2026 | 19:04:39,212 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:04:39,722 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101999 +30 一月 2026 | 19:04:40,498 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:6035ms +30 一月 2026 | 19:04:41,227 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error java.net.ConnectException: Connection refused: connect at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) @@ -129,9 +1506,17 @@ java.net.ConnectException: Connection refused: connect at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:17:01,467 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect -24 一月 2026 | 18:17:24,188 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:17:26,623 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +30 一月 2026 | 19:04:41,229 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +30 一月 2026 | 19:04:41,537 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:791891 +30 一月 2026 | 19:04:41,605 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] +30 一月 2026 | 19:04:42,242 | INFO | qtp809762318-70 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:04:43,321 | INFO | qtp809762318-70 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1822ms +30 一月 2026 | 19:04:44,235 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1896ms +30 一月 2026 | 19:04:48,924 | INFO | qtp809762318-70 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 +30 一月 2026 | 19:04:54,588 | INFO | qtp809762318-70 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:6733ms +30 一月 2026 | 19:05:07,555 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:05:08,256 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:103555 +30 一月 2026 | 19:05:09,454 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error java.net.ConnectException: Connection refused: connect at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) @@ -145,16 +1530,24 @@ java.net.ConnectException: Connection refused: connect at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:17:26,639 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect -24 一月 2026 | 18:17:35,421 | INFO | qtp1605283233-66 | group.controller.GroupController | | jefe_test: 112233 -24 一月 2026 | 18:17:35,757 | INFO | qtp1605283233-66 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:489ms -24 一月 2026 | 18:17:37,019 | INFO | qtp1605283233-63 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:430ms -24 一月 2026 | 18:17:41,923 | INFO | qtp1605283233-67 | taurus.web.WebFilter | | action: del__room[{user}:112233] time:475ms -24 一月 2026 | 18:17:45,984 | INFO | qtp1605283233-65 | group.controller.GroupController | | jefe_test: 112233 -24 一月 2026 | 18:17:46,318 | INFO | qtp1605283233-65 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:470ms -24 一月 2026 | 18:17:46,829 | INFO | qtp1605283233-77 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:559ms -24 一月 2026 | 18:17:48,901 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:17:51,488 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +30 一月 2026 | 19:05:09,455 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +30 一月 2026 | 19:05:09,603 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:602412 +30 一月 2026 | 19:05:09,642 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] +30 一月 2026 | 19:05:09,860 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] +30 一月 2026 | 19:05:10,054 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:05:10,055 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:05:10,055 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:05:10,563 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:05:10,741 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:05:10,797 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:05:10,797 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8258000 +30 一月 2026 | 19:05:10,798 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:05:10,798 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:05:11,038 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:05:11,357 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3246d71a +30 一月 2026 | 19:05:11,724 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:05:11,956 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:05:33,798 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error java.net.ConnectException: Connection refused: connect at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) @@ -168,18 +1561,8 @@ java.net.ConnectException: Connection refused: connect at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:17:51,489 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect -24 一月 2026 | 18:17:58,928 | INFO | qtp1605283233-65 | taurus.web.WebFilter | | action: del__room[{user}:112233] time:352ms -24 一月 2026 | 18:18:01,170 | INFO | qtp1605283233-64 | group.controller.GroupController | | jefe_test: 112233 -24 一月 2026 | 18:18:01,530 | INFO | qtp1605283233-64 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:559ms -24 一月 2026 | 18:18:02,306 | INFO | qtp1605283233-63 | group.controller.GroupController | | jefe_test: 112233 -24 一月 2026 | 18:18:02,583 | INFO | qtp1605283233-63 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:418ms -24 一月 2026 | 18:18:03,520 | INFO | qtp1605283233-65 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:440ms -24 一月 2026 | 18:18:07,041 | INFO | qtp1605283233-63 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 -24 一月 2026 | 18:18:07,510 | ERROR | qtp1605283233-63 | group.service.GroupRoomService | | createGroupRoom gameId:10 svr:null -24 一月 2026 | 18:18:07,522 | INFO | qtp1605283233-63 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:759ms -24 一月 2026 | 18:18:13,817 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:18:16,235 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +30 一月 2026 | 19:05:33,801 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +30 一月 2026 | 19:05:59,715 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error java.net.ConnectException: Connection refused: connect at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) @@ -193,1490 +1576,1869 @@ java.net.ConnectException: Connection refused: connect at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:18:16,237 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect -24 一月 2026 | 18:18:25,783 | INFO | qtp1605283233-67 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 -24 一月 2026 | 18:18:27,600 | INFO | qtp1605283233-67 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:2134ms -24 一月 2026 | 18:18:39,335 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:18:39,874 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:18:40,402 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101666 login -24 一月 2026 | 18:18:40,453 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 -24 一月 2026 | 18:18:41,510 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:18:41,646 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101666 -24 一月 2026 | 18:18:41,924 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:648053 -24 一月 2026 | 18:18:41,934 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] -24 一月 2026 | 18:18:42,063 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] -24 一月 2026 | 18:18:42,086 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:18:42,086 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:18:42,086 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 18:18:42,239 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 18:18:42,268 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 18:18:42,279 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 18:18:42,279 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6958000 -24 一月 2026 | 18:18:42,279 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 18:18:42,279 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 18:18:42,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 18:18:42,500 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2d4886c1 -24 一月 2026 | 18:18:42,555 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 18:18:42,586 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:19:04,085 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:19:04,818 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:19:28,771 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:19:29,480 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:19:29,902 | ERROR | Thread-51 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:05:59,717 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +30 一月 2026 | 19:06:24,258 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +java.net.ConnectException: Connection refused: connect + at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) + at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) + at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:476) + at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:218) + at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:200) + at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:162) + at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:394) + at java.net.Socket.connect(Socket.java:606) + at taurus.client.io.SocketTcp.connectThread(SocketTcp.java:54) + at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) + at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) + at java.lang.Thread.run(Thread.java:750) +30 一月 2026 | 19:06:24,261 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +30 一月 2026 | 19:06:49,552 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +java.net.ConnectException: Connection refused: connect + at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) + at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) + at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:476) + at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:218) + at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:200) + at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:162) + at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:394) + at java.net.Socket.connect(Socket.java:606) + at taurus.client.io.SocketTcp.connectThread(SocketTcp.java:54) + at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) + at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) + at java.lang.Thread.run(Thread.java:750) +30 一月 2026 | 19:06:49,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +30 一月 2026 | 19:07:12,425 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:07:13,050 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 +30 一月 2026 | 19:07:14,263 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +java.net.ConnectException: Connection refused: connect + at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) + at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) + at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:476) + at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:218) + at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:200) + at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:162) + at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:394) + at java.net.Socket.connect(Socket.java:606) + at taurus.client.io.SocketTcp.connectThread(SocketTcp.java:54) + at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) + at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) + at java.lang.Thread.run(Thread.java:750) +30 一月 2026 | 19:07:14,272 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +30 一月 2026 | 19:07:15,450 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:602412 +30 一月 2026 | 19:07:15,515 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] +30 一月 2026 | 19:07:15,767 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] +30 一月 2026 | 19:07:15,937 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:07:15,937 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:07:15,937 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:07:16,335 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:07:16,519 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:07:16,568 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:07:16,568 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:18732000 +30 一月 2026 | 19:07:16,568 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:07:16,568 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:07:16,799 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:07:17,088 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1a76d54f +30 一月 2026 | 19:07:17,417 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:07:17,594 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:07:27,522 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 19:07:27,571 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 19:07:32,250 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:07:32,897 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:103555 +30 一月 2026 | 19:07:46,282 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 19:07:46,329 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 19:07:51,661 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:07:51,794 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:07:52,416 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101999 +30 一月 2026 | 19:07:54,633 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:602412 +30 一月 2026 | 19:07:54,690 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:07:54,967 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:07:55,135 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:07:55,135 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:07:55,136 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:07:55,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:07:55,631 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:07:55,713 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:07:55,713 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3903000 +30 一月 2026 | 19:07:55,713 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:07:55,713 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:07:55,861 | INFO | qtp809762318-65 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 +30 一月 2026 | 19:07:55,873 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:07:56,209 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1098b7ca +30 一月 2026 | 19:07:56,533 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:07:56,693 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:08:00,474 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:5860ms +30 一月 2026 | 19:08:06,833 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 101, 208, 108, 207, 105, 204, 207, 202, 107, 103, 102, 104, 206] +30 一月 2026 | 19:08:06,833 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:08:06,833 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +30 一月 2026 | 19:08:06,833 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:08:06,833 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209] +30 一月 2026 | 19:08:10,121 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 101, 208, 108, 207, 105, 204, 207, 202, 107, 103, 102, 206, 103] +30 一月 2026 | 19:08:10,121 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:08:10,121 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +30 一月 2026 | 19:08:10,121 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:08:10,121 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 104, 105, 106] +30 一月 2026 | 19:08:12,412 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 101, 208, 108, 207, 204, 207, 202, 102, 206, 103] +30 一月 2026 | 19:08:12,412 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:08:12,412 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[106, 107, 105] +30 一月 2026 | 19:08:12,412 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:08:12,412 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 104, 106, 103, 105, 106] +30 一月 2026 | 19:08:15,078 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 101, 208, 207, 204, 207, 202, 102, 206, 103, 102] +30 一月 2026 | 19:08:15,078 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:08:15,078 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[106, 107, 105] +30 一月 2026 | 19:08:15,078 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:08:15,078 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 104, 209, 103, 105, 106, 107, 105, 108, 108] +30 一月 2026 | 19:08:19,118 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 101, 208, 207, 204, 207, 202, 206, 103, 102, 102] +30 一月 2026 | 19:08:19,119 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:08:19,119 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[106, 107, 105] +30 一月 2026 | 19:08:19,119 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:08:19,119 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 104, 209, 109, 103, 102, 105, 106, 107, 105, 108, 108] +30 一月 2026 | 19:08:21,224 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +30 一月 2026 | 19:08:21,282 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 101, 208, 207, 204, 207, 202, 206, 103, 102, 205] +30 一月 2026 | 19:08:21,282 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:08:21,282 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[106, 107, 105] +30 一月 2026 | 19:08:21,282 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:08:21,282 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 104, 209, 109, 109, 103, 102, 102, 105, 106, 107, 105, 108, 108] +30 一月 2026 | 19:08:22,763 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:08:22,827 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:08:23,361 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:103555 +30 一月 2026 | 19:08:24,580 | INFO | qtp809762318-61 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:08:25,119 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:965784 +30 一月 2026 | 19:08:25,201 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:08:25,526 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:08:25,734 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:08:25,735 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:08:25,735 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:08:26,168 | INFO | qtp809762318-61 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2407ms +30 一月 2026 | 19:08:26,290 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:08:26,496 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:08:26,559 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:08:26,560 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8258000 +30 一月 2026 | 19:08:26,560 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:08:26,560 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:08:26,660 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2244ms +30 一月 2026 | 19:08:26,758 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:08:27,145 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2c7f9873 +30 一月 2026 | 19:08:27,444 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:08:27,600 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:08:43,008 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:08:43,159 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:08:43,818 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:103555 +30 一月 2026 | 19:08:45,317 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:965784 +30 一月 2026 | 19:08:45,360 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:08:45,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:08:45,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:08:45,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:08:45,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:08:46,122 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:08:46,284 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:08:46,318 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:08:46,319 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8258000 +30 一月 2026 | 19:08:46,319 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:08:46,319 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:08:46,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:08:46,778 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2c7f9873 +30 一月 2026 | 19:08:47,038 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:08:47,210 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:08:56,079 | INFO | qtp809762318-63 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:08:57,484 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2165ms +30 一月 2026 | 19:08:58,226 | INFO | qtp809762318-61 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2361ms +30 一月 2026 | 19:09:02,520 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:19:29,904 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -24 一月 2026 | 18:19:31,586 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -24 一月 2026 | 18:19:31,634 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -24 一月 2026 | 18:19:32,603 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:19:33,228 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:19:50,014 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:09:02,523 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:09:08,865 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:09:08,981 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:09:09,581 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:103555 +30 一月 2026 | 19:09:11,207 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:965784 +30 一月 2026 | 19:09:11,280 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:09:11,482 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: join_room[{user}:177475] time:7716ms +30 一月 2026 | 19:09:11,599 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:09:11,766 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:09:11,766 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:09:11,766 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:09:12,243 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:09:12,440 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:09:12,483 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:09:12,483 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8258000 +30 一月 2026 | 19:09:12,483 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:09:12,483 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:09:12,525 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:19:50,030 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -24 一月 2026 | 18:19:57,415 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:19:58,453 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:648053 -24 一月 2026 | 18:19:58,463 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] -24 一月 2026 | 18:19:58,731 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -24 一月 2026 | 18:19:59,284 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:19:59,477 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:19:59,547 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 -24 一月 2026 | 18:19:59,803 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:891049 -24 一月 2026 | 18:19:59,810 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:19:59,881 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:19:59,919 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:19:59,919 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:19:59,919 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 18:20:00,042 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 18:20:00,069 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 18:20:00,080 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 18:20:00,080 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:16210000 -24 一月 2026 | 18:20:00,081 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 18:20:00,081 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 18:20:00,170 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 18:20:00,216 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@256fe7f8 -24 一月 2026 | 18:20:00,291 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 18:20:00,324 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:20:04,658 | INFO | qtp1605283233-68 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 -24 一月 2026 | 18:20:05,527 | INFO | qtp1605283233-68 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:1157ms -24 一月 2026 | 18:20:10,970 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[202, 107, 205, 208, 209, 107, 204, 208, 207, 207, 102, 109, 105, 203] -24 一月 2026 | 18:20:10,970 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:20:10,970 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:20:10,970 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:20:10,970 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] -24 一月 2026 | 18:21:47,731 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:127) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:21:47,733 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnReceive -24 一月 2026 | 18:22:14,869 | INFO | qtp1605283233-67 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 -24 一月 2026 | 18:22:16,476 | INFO | qtp1605283233-67 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:1863ms -24 一月 2026 | 18:22:27,495 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:22:28,000 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:22:28,528 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101777 login -24 一月 2026 | 18:22:28,568 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 -24 一月 2026 | 18:22:29,476 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:22:29,592 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101777 -24 一月 2026 | 18:22:29,908 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:966473 -24 一月 2026 | 18:22:29,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] -24 一月 2026 | 18:22:29,953 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] -24 一月 2026 | 18:22:29,984 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:22:29,984 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:22:29,984 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 18:22:30,077 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 18:22:30,113 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 18:22:30,121 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 18:22:30,121 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:7898000 -24 一月 2026 | 18:22:30,121 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 18:22:30,121 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 18:22:30,170 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 18:22:30,221 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@207eecfe -24 一月 2026 | 18:22:30,300 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 18:22:30,339 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:22:48,094 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 204, 203, 203, 108, 201, 207, 209, 107, 101, 101, 109, 109, 205] -24 一月 2026 | 18:22:48,094 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:22:48,095 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:22:48,095 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:22:48,095 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209] -24 一月 2026 | 18:22:52,531 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:22:53,017 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101888 login -24 一月 2026 | 18:22:53,042 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 -24 一月 2026 | 18:22:54,465 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:966473 -24 一月 2026 | 18:22:54,484 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [112233,101777]] -24 一月 2026 | 18:22:54,523 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [112233,101777]] -24 一月 2026 | 18:22:54,559 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:22:54,559 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:22:54,560 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom enter group fail, room full:g{330800}:m101888 room_key:room:966473 -24 一月 2026 | 18:22:54,783 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -24 一月 2026 | 18:22:55,054 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[203, 201], weight=1, id=1, type=1, card=202}, {opcard=[203, 204], weight=1, id=2, type=1, card=202}] -24 一月 2026 | 18:22:55,133 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 203, 203, 108, 207, 209, 107, 101, 109, 109, 205] -24 一月 2026 | 18:22:55,133 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:22:55,133 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[202, 203, 201] -24 一月 2026 | 18:22:55,133 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:22:55,133 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 209, 202] -24 一月 2026 | 18:22:55,208 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:22:55,348 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:22:55,433 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101888 -24 一月 2026 | 18:22:55,729 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:259408 -24 一月 2026 | 18:22:55,752 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:22:55,812 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:22:55,834 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:22:55,834 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:22:55,834 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 18:22:55,910 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 18:22:55,957 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 18:22:55,971 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 18:22:55,971 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6946000 -24 一月 2026 | 18:22:55,971 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 18:22:55,971 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 18:22:56,041 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 18:22:56,126 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@597bd52d -24 一月 2026 | 18:22:56,198 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 18:22:56,224 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:23:00,362 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 203, 203, 108, 207, 209, 107, 109, 109, 205, 103] -24 一月 2026 | 18:23:00,362 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:23:00,362 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[202, 203, 201] -24 一月 2026 | 18:23:00,362 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:23:00,362 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 209, 104, 203, 201] -24 一月 2026 | 18:23:04,990 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[205, 203], weight=1, id=1, type=1, card=204}] -24 一月 2026 | 18:23:05,051 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 203, 203, 108, 207, 209, 107, 109, 109, 205, 107] -24 一月 2026 | 18:23:05,051 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:23:05,051 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[202, 203, 201] -24 一月 2026 | 18:23:05,051 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:23:05,051 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 103, 209, 104, 204, 203, 201] -24 一月 2026 | 18:23:06,756 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[108, 107], weight=1, id=1, type=1, card=109}] -24 一月 2026 | 18:23:06,835 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 203, 203, 108, 207, 209, 107, 109, 205, 107, 208] -24 一月 2026 | 18:23:06,835 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:23:06,835 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[202, 203, 201] -24 一月 2026 | 18:23:06,835 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:23:06,835 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 103, 109, 209, 104, 204, 109, 203, 201] -24 一月 2026 | 18:23:12,618 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 203, 203, 108, 207, 209, 109, 205, 107, 208, 207] -24 一月 2026 | 18:23:12,618 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:23:12,618 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[202, 203, 201] -24 一月 2026 | 18:23:12,618 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:23:12,618 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 103, 109, 209, 104, 204, 109, 102, 203, 201, 107, 107, 107] -24 一月 2026 | 18:23:14,224 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[108, 107], weight=1, id=1, type=1, card=109}] -24 一月 2026 | 18:23:14,287 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 203, 108, 207, 209, 109, 205, 107, 208, 207, 203] -24 一月 2026 | 18:23:14,287 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:23:14,287 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[202, 203, 201] -24 一月 2026 | 18:23:14,287 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:23:14,287 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 103, 109, 203, 209, 104, 204, 109, 102, 109, 203, 201, 107, 107, 107] -24 一月 2026 | 18:23:16,637 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208, 207], weight=1, id=1, type=1, card=209}] -24 一月 2026 | 18:23:16,700 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 108, 207, 209, 109, 205, 107, 208, 207, 203, 104] -24 一月 2026 | 18:23:16,700 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:23:16,700 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[202, 203, 201] -24 一月 2026 | 18:23:16,700 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:23:16,700 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 103, 109, 203, 203, 209, 104, 204, 109, 102, 109, 209, 203, 201, 107, 107, 107] -24 一月 2026 | 18:23:39,351 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 108, 207, 209, 109, 205, 107, 208, 207, 203, 106] -24 一月 2026 | 18:23:39,351 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:23:39,351 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[202, 203, 201] -24 一月 2026 | 18:23:39,351 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:23:39,351 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 103, 109, 203, 203, 104, 209, 104, 204, 109, 102, 109, 209, 104, 203, 201, 107, 107, 107] -24 一月 2026 | 18:23:41,305 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 108, 207, 209, 205, 107, 208, 207, 203, 106, 107] -24 一月 2026 | 18:23:41,305 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:23:41,305 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[202, 203, 201] -24 一月 2026 | 18:23:41,305 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:23:41,305 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 103, 109, 203, 203, 104, 109, 209, 104, 204, 109, 102, 109, 209, 104, 104, 203, 201, 107, 107, 107] -24 一月 2026 | 18:23:42,947 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[209, 208], weight=1, id=1, type=1, card=210}] -24 一月 2026 | 18:23:43,010 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 108, 207, 209, 205, 208, 207, 203, 106, 107, 105] -24 一月 2026 | 18:23:43,010 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:23:43,010 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[202, 203, 201] -24 一月 2026 | 18:23:43,010 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:23:43,010 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 103, 109, 203, 203, 104, 109, 107, 209, 104, 204, 109, 102, 109, 209, 104, 104, 210, 203, 201, 107, 107, 107] -24 一月 2026 | 18:23:45,980 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[106, 107], weight=1, id=1, type=1, card=105}, {opcard=[105], weight=5, id=2, type=6, card=105}] -24 一月 2026 | 18:23:56,165 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 204, 203, 203, 108, 201, 207, 209, 107, 101, 101, 109, 109, 206] -24 一月 2026 | 18:23:56,165 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:23:56,165 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:23:56,165 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:23:56,165 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 103, 109, 203, 203, 104, 109, 107, 209, 104, 204, 109, 102, 109, 209, 104, 104, 210, 105, 203, 201, 207, 207, 107, 107, 107] -24 一月 2026 | 18:23:59,743 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[204, 203], weight=1, id=1, type=1, card=205}, {opcard=[206, 204], weight=1, id=2, type=1, card=205}, {opcard=[206, 207], weight=1, id=3, type=1, card=205}] -24 一月 2026 | 18:23:59,826 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 203, 203, 108, 201, 207, 209, 107, 101, 109, 109] -24 一月 2026 | 18:23:59,826 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:23:59,826 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[205, 206, 204] -24 一月 2026 | 18:23:59,826 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:23:59,826 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 205] -24 一月 2026 | 18:24:07,403 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:24:08,112 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:24:29,855 | ERROR | Thread-50 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:09:12,528 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:09:12,761 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:09:13,101 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2c7f9873 +30 一月 2026 | 19:09:13,401 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:09:13,563 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:09:15,081 | INFO | qtp809762318-68 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:09:16,560 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2204ms +30 一月 2026 | 19:09:17,160 | INFO | qtp809762318-61 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2143ms +30 一月 2026 | 19:09:22,524 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:24:29,870 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -24 一月 2026 | 18:24:32,485 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:24:33,424 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:24:38,836 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[108, 107], weight=1, id=1, type=1, card=109}, {opcard=[109], weight=2, id=2, type=2, card=109}] -24 一月 2026 | 18:24:38,917 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 203, 203, 108, 201, 207, 209, 107] -24 一月 2026 | 18:24:38,917 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[109, 109, 109] -24 一月 2026 | 18:24:38,917 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[205, 206, 204] -24 一月 2026 | 18:24:38,917 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:24:38,917 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 109, 206, 204] -24 一月 2026 | 18:24:45,988 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 203, 203, 108, 207, 209, 107, 103] -24 一月 2026 | 18:24:45,988 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[109, 109, 109] -24 一月 2026 | 18:24:45,988 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[205, 206, 204] -24 一月 2026 | 18:24:45,988 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:24:45,988 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 201, 202, 206, 204, 109, 109] -24 一月 2026 | 18:24:49,956 | ERROR | Thread-54 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:09:22,525 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:09:31,767 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:09:32,775 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1644ms +30 一月 2026 | 19:09:33,425 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1483ms +30 一月 2026 | 19:09:37,562 | INFO | qtp809762318-61 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:09:39,057 | INFO | qtp809762318-61 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2182ms +30 一月 2026 | 19:09:39,353 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1992ms +30 一月 2026 | 19:12:26,794 | INFO | qtp809762318-68 | group.controller.GroupRoomController | | matchRoom() ==> pid = 15 +30 一月 2026 | 19:12:31,731 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:6041ms +30 一月 2026 | 19:12:36,634 | INFO | qtp809762318-68 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:12:37,812 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1768ms +30 一月 2026 | 19:12:40,836 | INFO | qtp809762318-68 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:12:42,091 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1947ms +30 一月 2026 | 19:12:45,197 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1628ms +30 一月 2026 | 19:12:49,756 | INFO | qtp809762318-87 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 +30 一月 2026 | 19:12:55,120 | INFO | qtp809762318-87 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:6451ms +30 一月 2026 | 19:13:04,280 | INFO | qtp809762318-68 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:13:05,535 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1809ms +30 一月 2026 | 19:13:06,183 | INFO | qtp809762318-87 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1849ms +30 一月 2026 | 19:13:14,878 | INFO | qtp809762318-87 | taurus.web.WebFilter | | action: join_room[{user}:177475] time:6785ms +30 一月 2026 | 19:13:41,534 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:13:41,652 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:13:42,177 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101999 +30 一月 2026 | 19:13:43,913 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:669041 +30 一月 2026 | 19:13:43,950 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] +30 一月 2026 | 19:13:44,158 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] +30 一月 2026 | 19:13:44,321 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:13:44,321 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:13:44,321 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:13:44,717 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:13:44,880 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:13:44,935 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:13:44,935 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3902000 +30 一月 2026 | 19:13:44,935 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:13:44,935 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:13:45,131 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:13:45,393 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1098b7ca +30 一月 2026 | 19:13:45,696 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:13:45,837 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:15:47,833 | INFO | qtp809762318-88 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:15:49,359 | INFO | qtp809762318-88 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2191ms +30 一月 2026 | 19:15:49,933 | INFO | qtp809762318-95 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1954ms +30 一月 2026 | 19:16:02,636 | ERROR | Thread-49 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:24:49,970 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -24 一月 2026 | 18:24:50,594 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 203, 203, 108, 207, 209, 107, 107] -24 一月 2026 | 18:24:50,594 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[109, 109, 109] -24 一月 2026 | 18:24:50,594 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[205, 206, 204] -24 一月 2026 | 18:24:50,594 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:24:50,594 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 201, 202, 107, 206, 204, 104, 102, 109, 109] -24 一月 2026 | 18:24:51,945 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 203, 203, 108, 207, 209, 107, 205] -24 一月 2026 | 18:24:51,945 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[109, 109, 109] -24 一月 2026 | 18:24:51,945 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[205, 206, 204] -24 一月 2026 | 18:24:51,945 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:24:51,945 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 201, 107, 202, 107, 107, 206, 204, 104, 102, 109, 109] -24 一月 2026 | 18:24:57,493 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:24:58,344 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:25:00,599 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 203, 203, 108, 207, 107, 205, 209] -24 一月 2026 | 18:25:00,599 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[109, 109, 109] -24 一月 2026 | 18:25:00,599 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[205, 206, 204] -24 一月 2026 | 18:25:00,599 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:25:00,599 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 201, 107, 209, 202, 107, 107, 107, 206, 204, 104, 102, 109, 109] -24 一月 2026 | 18:25:06,366 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[109], weight=3, id=1, type=5, card=109}] -24 一月 2026 | 18:25:06,522 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[203], weight=3, id=1, type=4, card=203}] -24 一月 2026 | 18:25:06,601 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 207, 107, 205, 208] -24 一月 2026 | 18:25:06,601 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[109, 109, 109] -24 一月 2026 | 18:25:06,601 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[205, 206, 204] -24 一月 2026 | 18:25:06,601 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[109, 109, 109, 109, 203, 203, 203, 203] -24 一月 2026 | 18:25:06,601 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 201, 107, 209, 209, 202, 107, 107, 107, 209, 206, 204, 104, 102, 109, 109] -24 一月 2026 | 18:25:15,066 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 207, 107, 208, 210] -24 一月 2026 | 18:25:15,066 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[109, 109, 109] -24 一月 2026 | 18:25:15,066 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[205, 206, 204] -24 一月 2026 | 18:25:15,066 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[109, 109, 109, 109, 203, 203, 203, 203] -24 一月 2026 | 18:25:15,066 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 201, 107, 209, 209, 205, 202, 107, 107, 107, 209, 104, 206, 204, 104, 102, 109, 109, 109, 203, 203, 203, 203] -24 一月 2026 | 18:25:19,980 | ERROR | Thread-59 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:16:02,637 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:16:03,615 | INFO | qtp809762318-88 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:16:04,777 | INFO | qtp809762318-88 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1714ms +30 一月 2026 | 19:16:05,626 | INFO | qtp809762318-97 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1903ms +30 一月 2026 | 19:16:08,800 | INFO | qtp809762318-95 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:16:10,077 | INFO | qtp809762318-95 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1872ms +30 一月 2026 | 19:16:10,764 | INFO | qtp809762318-88 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1649ms +30 一月 2026 | 19:16:12,639 | ERROR | Thread-43 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:25:22,948 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:25:39,948 | ERROR | Thread-63 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:16:12,641 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:16:19,237 | INFO | qtp809762318-88 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 +30 一月 2026 | 19:16:24,883 | INFO | qtp809762318-88 | taurus.web.WebFilter | | action: match_room[{user}:177475] time:6882ms +30 一月 2026 | 19:16:37,476 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 19:16:37,524 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 19:16:44,819 | INFO | qtp809762318-68 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 +30 一月 2026 | 19:16:49,837 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: match_room[{user}:177475] time:5867ms +30 一月 2026 | 19:17:06,471 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:17:22,659 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:25:47,488 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:26:09,832 | ERROR | Thread-68 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:17:22,662 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:17:23,790 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:17:24,877 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1536ms +30 一月 2026 | 19:17:25,523 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1302ms +30 一月 2026 | 19:17:31,853 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:17:32,902 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1576ms +30 一月 2026 | 19:17:34,481 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: join_room[{user}:177475] time:5900ms +30 一月 2026 | 19:17:35,199 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1386ms +30 一月 2026 | 19:17:57,296 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:17:57,445 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:17:58,199 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101999 +30 一月 2026 | 19:18:00,075 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:974080 +30 一月 2026 | 19:18:00,117 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [177475]] +30 一月 2026 | 19:18:00,320 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [177475]] +30 一月 2026 | 19:18:00,475 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:18:00,475 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:18:00,475 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:18:00,874 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:18:01,018 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:18:01,066 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:18:01,066 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3901000 +30 一月 2026 | 19:18:01,066 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:18:01,066 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:18:01,274 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:18:01,555 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4803b8c1 +30 一月 2026 | 19:18:01,849 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:18:02,035 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:18:32,677 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:26:12,468 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:26:16,182 | ERROR | Thread-45 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:127) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:26:16,182 | ERROR | Thread-41 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:127) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:26:16,182 | ERROR | Thread-72 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:127) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:26:34,466 | INFO | qtp1605283233-89 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 -24 一月 2026 | 18:26:36,817 | INFO | qtp1605283233-89 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:2629ms -24 一月 2026 | 18:26:37,481 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:26:38,448 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:26:38,643 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101888 -24 一月 2026 | 18:26:39,083 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:972340 -24 一月 2026 | 18:26:39,089 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] -24 一月 2026 | 18:26:39,158 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] -24 一月 2026 | 18:26:39,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:26:39,185 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:26:39,185 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 18:26:39,323 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 18:26:39,364 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 18:26:39,372 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 18:26:39,373 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6946000 -24 一月 2026 | 18:26:39,373 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 18:26:39,373 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 18:26:39,415 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 18:26:39,487 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@597bd52d -24 一月 2026 | 18:26:39,568 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 18:26:39,594 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:27:02,782 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:27:03,085 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:102111 login -24 一月 2026 | 18:27:03,098 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 -24 一月 2026 | 18:27:04,325 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:972340 -24 一月 2026 | 18:27:04,336 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [112233,101888]] -24 一月 2026 | 18:27:04,367 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [112233,101888]] -24 一月 2026 | 18:27:04,393 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:27:04,393 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:27:04,393 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom enter group fail, room full:g{330800}:m102111 room_key:room:972340 -24 一月 2026 | 18:27:04,557 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -24 一月 2026 | 18:27:05,028 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:27:05,220 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:102111 -24 一月 2026 | 18:27:05,555 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:199079 -24 一月 2026 | 18:27:05,565 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:27:05,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:27:05,667 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:27:05,667 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:27:05,667 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 18:27:05,760 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 18:27:05,793 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 18:27:05,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 18:27:05,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:7119000 -24 一月 2026 | 18:27:05,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 18:27:05,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 18:27:05,841 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 18:27:05,901 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@86d0134 -24 一月 2026 | 18:27:05,975 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 18:27:06,002 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:27:07,202 | ERROR | Thread-77 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:18:32,680 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:18:39,359 | INFO | qtp809762318-69 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:18:40,558 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1738ms +30 一月 2026 | 19:18:44,957 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1749ms +30 一月 2026 | 19:19:56,568 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: get_mail_list[{user}:177475] time:1955ms +30 一月 2026 | 19:20:00,765 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:20:01,951 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1737ms +30 一月 2026 | 19:20:02,510 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1666ms +30 一月 2026 | 19:20:03,209 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +30 一月 2026 | 19:20:03,819 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_my_members[{user}:177475] time:9266ms +30 一月 2026 | 19:20:04,488 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:20:04,550 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:20:05,088 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 +30 一月 2026 | 19:20:06,608 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:970325 +30 一月 2026 | 19:20:06,648 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:20:06,847 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:20:06,967 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:20:06,967 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:20:06,967 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:20:07,432 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:20:07,567 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:20:07,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:20:07,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:18732000 +30 一月 2026 | 19:20:07,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:20:07,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:20:07,807 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:20:08,187 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@37abc445 +30 一月 2026 | 19:20:08,510 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:20:08,654 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:20:15,408 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:20:16,772 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2042ms +30 一月 2026 | 19:20:17,565 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:20:17,934 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2044ms +30 一月 2026 | 19:20:18,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +30 一月 2026 | 19:20:18,780 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1976ms +30 一月 2026 | 19:20:19,182 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1799ms +30 一月 2026 | 19:20:19,526 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:20:19,966 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101999 +30 一月 2026 | 19:20:20,566 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:20:21,566 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:428762 +30 一月 2026 | 19:20:21,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:20:21,886 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:20:22,064 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:20:22,064 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:20:22,064 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:20:22,530 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:20:22,662 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:20:22,711 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:20:22,711 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3901000 +30 一月 2026 | 19:20:22,711 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:20:22,711 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:20:22,902 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:20:23,207 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4803b8c1 +30 一月 2026 | 19:20:23,487 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:20:23,654 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:20:26,767 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: join_room[{user}:177475] time:6122ms +30 一月 2026 | 19:20:30,137 | INFO | qtp809762318-69 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:20:31,292 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1820ms +30 一月 2026 | 19:20:31,904 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1924ms +30 一月 2026 | 19:20:34,121 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:20:34,562 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:103555 +30 一月 2026 | 19:20:35,280 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:20:35,862 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:970325 +30 一月 2026 | 19:20:35,916 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [177475]] +30 一月 2026 | 19:20:36,156 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [177475]] +30 一月 2026 | 19:20:36,281 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:20:36,281 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:20:36,282 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:20:36,618 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:20:36,756 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:20:36,797 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:20:36,797 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8258000 +30 一月 2026 | 19:20:36,797 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:20:36,797 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:20:37,042 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:20:37,316 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5c66874b +30 一月 2026 | 19:20:37,596 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:20:37,717 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:20:38,617 | INFO | qtp809762318-68 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:20:39,785 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1729ms +30 一月 2026 | 19:20:40,558 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1994ms +30 一月 2026 | 19:20:42,717 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:27:19,440 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -24 一月 2026 | 18:27:19,492 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -24 一月 2026 | 18:27:42,374 | INFO | qtp1605283233-69 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 -24 一月 2026 | 18:27:44,627 | INFO | qtp1605283233-69 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:2597ms -24 一月 2026 | 18:28:10,219 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:28:10,660 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:28:11,278 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:28:11,470 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 -24 一月 2026 | 18:28:11,913 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:254211 -24 一月 2026 | 18:28:11,922 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] -24 一月 2026 | 18:28:11,969 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] -24 一月 2026 | 18:28:12,007 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:28:12,007 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:28:12,007 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 18:28:12,158 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 18:28:12,189 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 18:28:12,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 18:28:12,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:16209000 -24 一月 2026 | 18:28:12,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 18:28:12,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 18:28:12,252 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 18:28:12,310 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2a494e40 -24 一月 2026 | 18:28:12,363 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 18:28:12,386 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:28:21,967 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 204, 203, 203, 108, 201, 207, 209, 107, 101, 101, 109, 109, 206] -24 一月 2026 | 18:28:21,967 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:28:21,967 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:28:21,967 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:28:21,967 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] -24 一月 2026 | 18:28:25,120 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[204, 203], weight=1, id=1, type=1, card=205}, {opcard=[206, 204], weight=1, id=2, type=1, card=205}, {opcard=[206, 207], weight=1, id=3, type=1, card=205}] -24 一月 2026 | 18:28:25,243 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 203, 203, 108, 201, 207, 209, 107, 101, 109, 109] -24 一月 2026 | 18:28:25,243 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:28:25,243 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[205, 206, 204] -24 一月 2026 | 18:28:25,243 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:28:25,243 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 205] -24 一月 2026 | 18:28:31,162 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[108, 107], weight=1, id=1, type=1, card=109}, {opcard=[109], weight=2, id=2, type=2, card=109}] -24 一月 2026 | 18:28:31,270 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 203, 203, 108, 201, 207, 209, 107] -24 一月 2026 | 18:28:31,270 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[109, 109, 109] -24 一月 2026 | 18:28:31,270 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[205, 206, 204] -24 一月 2026 | 18:28:31,270 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:28:31,270 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 109, 206, 204] -24 一月 2026 | 18:28:35,484 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:28:36,451 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:254211 -24 一月 2026 | 18:28:36,458 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [112233,101555]] -24 一月 2026 | 18:28:36,521 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [112233,101555]] -24 一月 2026 | 18:28:36,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:28:36,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:28:36,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom enter group fail, room full:g{330800}:m101666 room_key:room:254211 -24 一月 2026 | 18:28:36,717 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -24 一月 2026 | 18:28:37,131 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:28:37,267 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:28:37,361 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101666 -24 一月 2026 | 18:28:37,631 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:317807 -24 一月 2026 | 18:28:37,641 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:28:37,694 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:28:37,742 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:28:37,743 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:28:37,743 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 18:28:37,921 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 18:28:37,958 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 18:28:37,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 18:28:37,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6957000 -24 一月 2026 | 18:28:37,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 18:28:37,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 18:28:38,024 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 18:28:38,126 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4835ef63 -24 一月 2026 | 18:28:38,184 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 18:28:38,229 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:29:00,621 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:29:01,209 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:29:25,434 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:29:26,176 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:29:27,138 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:20:42,721 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:20:43,098 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:20:44,220 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1649ms +30 一月 2026 | 19:20:44,663 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1566ms +30 一月 2026 | 19:20:45,399 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:20:46,211 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:20:46,315 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:20:46,758 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 +30 一月 2026 | 19:20:46,818 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:2056ms +30 一月 2026 | 19:20:48,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:428762 +30 一月 2026 | 19:20:48,317 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:20:48,559 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:20:48,681 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:20:48,682 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:20:48,682 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:20:49,099 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:20:49,280 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:20:49,320 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:20:49,320 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:18732000 +30 一月 2026 | 19:20:49,321 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:20:49,321 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:20:49,533 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:20:49,837 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@37abc445 +30 一月 2026 | 19:20:49,884 | INFO | qtp809762318-68 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:20:50,160 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:20:50,277 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:20:51,181 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1989ms +30 一月 2026 | 19:20:51,517 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1750ms +30 一月 2026 | 19:20:52,463 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:29:27,152 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -24 一月 2026 | 18:29:47,010 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:20:52,465 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:20:54,343 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:20:55,302 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1604ms +30 一月 2026 | 19:20:56,077 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1596ms +30 一月 2026 | 19:20:57,617 | INFO | qtp809762318-68 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:20:58,996 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1885ms +30 一月 2026 | 19:20:59,459 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1828ms +30 一月 2026 | 19:21:02,243 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:21:02,315 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:21:02,922 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 +30 一月 2026 | 19:21:04,481 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:21:04,481 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:428762 +30 一月 2026 | 19:21:04,522 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:21:04,756 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:21:05,017 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:21:05,018 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:21:05,018 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:21:05,365 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:21:05,416 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1541ms +30 一月 2026 | 19:21:05,499 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:21:05,556 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:21:05,556 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:18732000 +30 一月 2026 | 19:21:05,556 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:21:05,556 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:21:05,782 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:21:06,076 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@37abc445 +30 一月 2026 | 19:21:06,300 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1700ms +30 一月 2026 | 19:21:06,396 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:21:06,540 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:21:11,301 | INFO | qtp809762318-68 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:21:12,662 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1582ms +30 一月 2026 | 19:21:12,717 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2094ms +30 一月 2026 | 19:21:15,159 | INFO | qtp809762318-68 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:21:16,137 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1749ms +30 一月 2026 | 19:21:16,476 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1379ms +30 一月 2026 | 19:21:19,717 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:21:20,047 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:21:20,161 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:21:20,640 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 +30 一月 2026 | 19:21:21,077 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1977ms +30 一月 2026 | 19:21:21,937 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2196ms +30 一月 2026 | 19:21:22,238 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:428762 +30 一月 2026 | 19:21:22,305 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:21:22,479 | ERROR | Thread-52 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:29:47,024 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -24 一月 2026 | 18:29:50,387 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:29:51,032 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:30:07,152 | ERROR | Thread-49 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:21:22,481 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:21:22,582 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:21:22,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:21:22,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:21:22,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:21:23,180 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:21:23,318 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:21:23,356 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:21:23,356 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:18732000 +30 一月 2026 | 19:21:23,356 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:21:23,356 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:21:23,519 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:21:23,797 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@37abc445 +30 一月 2026 | 19:21:24,040 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:21:24,198 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:21:33,038 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: join_room[{user}:177475] time:6095ms +30 一月 2026 | 19:21:34,241 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:21:35,595 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1957ms +30 一月 2026 | 19:21:40,323 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1627ms +30 一月 2026 | 19:21:42,481 | ERROR | Thread-56 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:30:07,168 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -24 一月 2026 | 18:30:15,248 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:30:15,904 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:30:19,496 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:127) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:30:19,496 | ERROR | Thread-53 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:127) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:30:19,496 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:127) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:30:19,498 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnReceive -24 一月 2026 | 18:30:19,499 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnReceive -24 一月 2026 | 18:30:19,499 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnReceive -24 一月 2026 | 18:30:40,347 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:30:41,075 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:31:01,640 | ERROR | Thread-58 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:21:42,483 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:21:43,742 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:21:43,843 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:21:44,023 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:21:44,382 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 +30 一月 2026 | 19:21:45,062 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1654ms +30 一月 2026 | 19:21:45,681 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1736ms +30 一月 2026 | 19:21:45,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:428762 +30 一月 2026 | 19:21:45,857 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:21:46,117 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:21:46,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:21:46,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:21:46,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:21:46,646 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:21:46,797 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:21:46,842 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:21:46,842 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:18732000 +30 一月 2026 | 19:21:46,842 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:21:46,842 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:21:47,064 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:21:47,368 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@37abc445 +30 一月 2026 | 19:21:47,707 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:21:47,848 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:21:52,482 | ERROR | Thread-60 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:31:01,656 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -24 一月 2026 | 18:31:05,465 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:31:06,102 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:31:30,340 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:31:30,977 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:31:31,706 | ERROR | Thread-63 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:21:52,484 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:22:07,896 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:22:07,994 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:22:08,693 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101999 +30 一月 2026 | 19:22:10,431 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:428762 +30 一月 2026 | 19:22:10,471 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:22:10,716 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:22:11,032 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:22:11,033 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:22:11,033 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:22:11,454 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:22:11,573 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:22:11,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:22:11,612 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3901000 +30 一月 2026 | 19:22:11,612 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:22:11,612 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:22:11,772 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:22:11,978 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4803b8c1 +30 一月 2026 | 19:22:12,233 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:22:12,363 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:22:22,491 | ERROR | Thread-64 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:31:31,722 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -24 一月 2026 | 18:31:51,557 | ERROR | Thread-68 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:22:24,036 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:22:33,052 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:22:33,152 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:22:33,574 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101999 +30 一月 2026 | 19:22:34,873 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:428762 +30 一月 2026 | 19:22:34,931 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:22:35,165 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:22:35,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:22:35,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:22:35,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:22:35,628 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:22:35,739 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:22:35,788 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:22:35,788 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3901000 +30 一月 2026 | 19:22:35,788 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:22:35,788 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:22:35,941 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:22:36,197 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4803b8c1 +30 一月 2026 | 19:22:36,416 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:22:36,539 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:22:42,522 | ERROR | Thread-69 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:31:51,573 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -24 一月 2026 | 18:31:55,307 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:31:55,891 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:32:20,414 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:32:21,245 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:32:21,748 | ERROR | Thread-72 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:22:42,525 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:22:57,285 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:22:57,380 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:22:57,853 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101999 +30 一月 2026 | 19:22:59,696 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:428762 +30 一月 2026 | 19:22:59,743 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:22:59,961 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:23:00,092 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:23:00,092 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:23:00,092 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:23:00,458 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:23:00,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:23:00,583 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:23:00,583 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3901000 +30 一月 2026 | 19:23:00,583 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:23:00,583 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:23:00,731 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:23:00,925 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4803b8c1 +30 一月 2026 | 19:23:01,175 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:23:01,352 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:23:12,502 | ERROR | Thread-73 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:32:21,750 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -24 一月 2026 | 18:32:41,576 | ERROR | Thread-76 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:23:13,119 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:23:23,629 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:23:23,702 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:23:24,264 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 +30 一月 2026 | 19:23:25,838 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:428762 +30 一月 2026 | 19:23:25,893 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:23:26,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:23:26,323 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:23:26,323 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:23:26,323 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:23:26,724 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:23:26,877 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:23:26,918 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:23:26,918 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:18732000 +30 一月 2026 | 19:23:26,918 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:23:26,918 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:23:27,119 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:23:27,357 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@37abc445 +30 一月 2026 | 19:23:27,602 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:23:27,765 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:23:32,520 | ERROR | Thread-77 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:32:41,578 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -24 一月 2026 | 18:32:45,642 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:32:46,266 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:33:10,208 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:33:10,856 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:33:11,674 | ERROR | Thread-81 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:23:32,525 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:23:48,547 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 19:23:48,597 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 19:24:44,767 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1963ms +30 一月 2026 | 19:24:45,165 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:24:46,344 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1922ms +30 一月 2026 | 19:24:47,320 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2146ms +30 一月 2026 | 19:24:47,403 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +30 一月 2026 | 19:24:48,406 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:24:48,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:24:48,759 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101999 +30 一月 2026 | 19:24:50,198 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:425346 +30 一月 2026 | 19:24:50,238 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:24:50,440 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:24:50,618 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:24:50,618 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:24:50,618 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:24:50,999 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:24:51,120 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:24:51,159 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:24:51,159 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3901000 +30 一月 2026 | 19:24:51,159 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:24:51,159 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:24:51,318 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:24:51,603 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2a60cb41 +30 一月 2026 | 19:24:51,885 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:24:52,041 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:25:07,882 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:25:07,962 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:25:08,739 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:103555 +30 一月 2026 | 19:25:10,159 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:425346 +30 一月 2026 | 19:25:10,205 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:25:10,933 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:25:11,186 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:25:11,525 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:25:11,525 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:25:11,525 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:25:12,144 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:25:12,260 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2718ms +30 一月 2026 | 19:25:12,317 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:25:12,371 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:25:12,371 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8258000 +30 一月 2026 | 19:25:12,371 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:25:12,371 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:25:12,688 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:25:13,030 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@30475461 +30 一月 2026 | 19:25:13,165 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:3030ms +30 一月 2026 | 19:25:13,667 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:25:13,840 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:25:13,855 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:25:15,226 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:2200ms +30 一月 2026 | 19:25:15,984 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:2227ms +30 一月 2026 | 19:25:22,540 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:33:11,675 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -24 一月 2026 | 18:33:31,748 | ERROR | Thread-85 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:25:23,704 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:425346 +30 一月 2026 | 19:25:23,771 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [103555]] +30 一月 2026 | 19:25:24,034 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [103555]] +30 一月 2026 | 19:25:24,156 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:25:24,156 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:25:24,156 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:25:24,583 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:25:24,733 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:25:24,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:25:24,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3901000 +30 一月 2026 | 19:25:24,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:25:24,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:25:24,972 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:25:25,253 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2a60cb41 +30 一月 2026 | 19:25:25,533 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:25:25,675 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:25:26,248 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:25:26,318 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +30 一月 2026 | 19:25:27,193 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:25:27,235 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:25:27,575 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101999 +30 一月 2026 | 19:25:27,910 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:25:28,863 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1510ms +30 一月 2026 | 19:25:29,019 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:460634 +30 一月 2026 | 19:25:29,064 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:25:29,266 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:25:29,428 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +30 一月 2026 | 19:25:29,474 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:25:29,625 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1446ms +30 一月 2026 | 19:25:34,302 | INFO | qtp809762318-68 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:25:35,258 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1498ms +30 一月 2026 | 19:25:36,139 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1431ms +30 一月 2026 | 19:25:42,554 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:33:31,749 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -24 一月 2026 | 18:33:35,566 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:33:36,172 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:33:40,488 | ERROR | Thread-90 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:127) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:33:40,490 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnReceive -24 一月 2026 | 18:34:00,248 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:34:00,427 | INFO | qtp1605283233-120 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 -24 一月 2026 | 18:34:01,032 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:317807 -24 一月 2026 | 18:34:01,040 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] -24 一月 2026 | 18:34:01,407 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:254211 -24 一月 2026 | 18:34:01,426 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] -24 一月 2026 | 18:34:01,663 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -24 一月 2026 | 18:34:02,067 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:34:02,251 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:34:02,387 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101777 -24 一月 2026 | 18:34:02,783 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:291186 -24 一月 2026 | 18:34:02,842 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:34:02,881 | INFO | qtp1605283233-120 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:2735ms -24 一月 2026 | 18:34:02,918 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:34:02,973 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:34:02,973 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:34:02,973 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 18:34:03,072 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 18:34:03,104 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 18:34:03,115 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 18:34:03,115 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:7907000 -24 一月 2026 | 18:34:03,115 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 18:34:03,115 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 18:34:03,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 18:34:03,268 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e76a94 -24 一月 2026 | 18:34:03,372 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 18:34:03,418 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:34:50,619 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:34:51,226 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:34:51,924 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:34:52,088 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101888 -24 一月 2026 | 18:34:52,510 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:909774 -24 一月 2026 | 18:34:52,530 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] -24 一月 2026 | 18:34:52,575 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] -24 一月 2026 | 18:34:52,608 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:34:52,608 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:34:52,608 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 18:34:52,784 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 18:34:52,832 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 18:34:52,841 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 18:34:52,841 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6945000 -24 一月 2026 | 18:34:52,841 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 18:34:52,841 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 18:34:52,918 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 18:34:52,976 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@44b03955 -24 一月 2026 | 18:34:53,037 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 18:34:53,167 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:35:13,623 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[203], weight=5, id=1, type=6, card=203}] -24 一月 2026 | 18:35:15,266 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:35:18,586 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:35:32,701 | ERROR | Thread-102 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:25:42,557 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:25:43,837 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:425346 +30 一月 2026 | 19:25:43,881 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [101999]] +30 一月 2026 | 19:25:44,074 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [101999]] +30 一月 2026 | 19:25:44,185 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:25:44,186 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:25:44,186 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:25:44,514 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:25:44,670 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:25:44,718 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:25:44,718 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8258000 +30 一月 2026 | 19:25:44,719 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:25:44,719 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:25:44,884 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:25:45,307 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@30475461 +30 一月 2026 | 19:25:45,387 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:25:45,586 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:25:45,727 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:25:46,567 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +30 一月 2026 | 19:25:46,966 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2176ms +30 一月 2026 | 19:25:47,146 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1844ms +30 一月 2026 | 19:25:47,394 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:25:47,434 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:25:47,838 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:103555 +30 一月 2026 | 19:25:48,860 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:619988 +30 一月 2026 | 19:25:48,914 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:25:49,086 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:25:49,199 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +30 一月 2026 | 19:25:49,241 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:25:49,645 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:25:50,725 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1567ms +30 一月 2026 | 19:25:51,173 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1538ms +30 一月 2026 | 19:25:57,844 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[106, 206, 201, 205, 104, 101, 208, 202, 207, 203, 101, 205, 105, 102] +30 一月 2026 | 19:25:57,844 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:25:57,844 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +30 一月 2026 | 19:25:57,844 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:25:57,844 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +30 一月 2026 | 19:25:58,509 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[207, 104, 105, 101, 208, 109, 102, 108, 107, 103, 109, 104, 209, 106] +30 一月 2026 | 19:25:58,509 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:25:58,509 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +30 一月 2026 | 19:25:58,509 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:25:58,509 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101] +30 一月 2026 | 19:25:58,928 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[106, 206, 201, 205, 104, 208, 202, 207, 203, 101, 205, 105, 102, 106] +30 一月 2026 | 19:25:58,929 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:25:58,929 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +30 一月 2026 | 19:25:58,929 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:25:58,929 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 209] +30 一月 2026 | 19:25:59,373 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[207, 104, 105, 101, 208, 109, 102, 108, 107, 103, 109, 104, 106, 103] +30 一月 2026 | 19:25:59,373 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:25:59,373 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +30 一月 2026 | 19:25:59,373 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:25:59,373 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 106, 209] +30 一月 2026 | 19:25:59,447 | INFO | qtp809762318-67 | group.service.GroupRoomService | | publicJoinRoom enter group fail, room full:g{330800}:m115777 room_key:room:425346 +30 一月 2026 | 19:25:59,592 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: join_room[{user}:115777] time:4326ms +30 一月 2026 | 19:25:59,886 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 201, 205, 104, 208, 202, 207, 203, 101, 205, 105, 102, 106, 105] +30 一月 2026 | 19:25:59,886 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:25:59,886 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +30 一月 2026 | 19:25:59,886 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:25:59,886 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 106, 209, 207] +30 一月 2026 | 19:26:00,194 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[105, 101, 208, 109, 102, 108, 107, 109, 104, 106, 103] +30 一月 2026 | 19:26:00,194 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:26:00,194 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[105, 104, 103] +30 一月 2026 | 19:26:00,194 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:26:00,194 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 106, 105, 209, 207] +30 一月 2026 | 19:26:00,605 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 201, 205, 104, 208, 202, 207, 203, 101, 205, 102, 106, 105, 108] +30 一月 2026 | 19:26:00,605 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:26:00,606 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +30 一月 2026 | 19:26:00,606 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:26:00,606 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 106, 209, 207, 208, 104, 103] +30 一月 2026 | 19:26:01,730 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[105, 101, 109, 102, 108, 107, 109, 104, 106, 103, 105] +30 一月 2026 | 19:26:01,730 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:26:01,730 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[105, 104, 103] +30 一月 2026 | 19:26:01,730 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:26:01,730 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 106, 108, 209, 207, 208, 104, 103] +30 一月 2026 | 19:26:02,164 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 201, 205, 104, 208, 202, 207, 203, 101, 205, 102, 106, 105, 202] +30 一月 2026 | 19:26:02,164 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:26:02,164 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +30 一月 2026 | 19:26:02,164 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:26:02,164 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 106, 108, 209, 207, 208, 105, 104, 103] +30 一月 2026 | 19:26:03,085 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[101, 109, 102, 108, 107, 109, 104, 106, 103, 105, 201] +30 一月 2026 | 19:26:03,085 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:26:03,085 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[105, 104, 103] +30 一月 2026 | 19:26:03,085 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:26:03,086 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 106, 108, 202, 209, 207, 208, 105, 104, 103] +30 一月 2026 | 19:26:03,445 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 201, 205, 104, 208, 207, 203, 101, 205, 102, 106, 105, 202, 209] +30 一月 2026 | 19:26:03,445 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:26:03,445 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +30 一月 2026 | 19:26:03,445 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:26:03,445 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 106, 108, 202, 209, 207, 208, 105, 201, 104, 103] +30 一月 2026 | 19:26:04,444 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[101, 109, 102, 108, 107, 109, 104, 106, 103, 105, 102] +30 一月 2026 | 19:26:04,444 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:26:04,444 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[105, 104, 103] +30 一月 2026 | 19:26:04,444 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:26:04,444 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 106, 108, 202, 209, 209, 207, 208, 105, 201, 104, 103] +30 一月 2026 | 19:26:04,927 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 201, 205, 104, 208, 207, 203, 101, 205, 102, 106, 105, 202, 204] +30 一月 2026 | 19:26:04,928 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:26:04,928 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +30 一月 2026 | 19:26:04,928 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:26:04,928 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 106, 108, 202, 209, 209, 207, 208, 105, 201, 102, 104, 103] +30 一月 2026 | 19:26:05,886 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[101, 109, 108, 107, 109, 104, 106, 103, 105, 102, 207] +30 一月 2026 | 19:26:05,886 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:26:05,886 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[105, 104, 103] +30 一月 2026 | 19:26:05,886 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:26:05,886 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 106, 108, 202, 209, 204, 209, 207, 208, 105, 201, 102, 104, 103] +30 一月 2026 | 19:26:06,424 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 205, 104, 208, 207, 203, 101, 205, 102, 106, 105, 202, 204, 109] +30 一月 2026 | 19:26:06,424 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:26:06,424 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +30 一月 2026 | 19:26:06,424 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:26:06,424 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 106, 108, 202, 209, 204, 209, 207, 208, 105, 201, 102, 207, 104, 103] +30 一月 2026 | 19:26:09,493 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:26:10,484 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 203, 208, 205, 207, 206, 203, 204, 107, 205, 109, 103, 209, 104] +30 一月 2026 | 19:26:10,485 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:26:10,485 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +30 一月 2026 | 19:26:10,485 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:26:10,485 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 106, 108, 202, 209, 204, 109, 209, 207, 208, 105, 201, 102, 207, 104, 103] +30 一月 2026 | 19:26:10,565 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1615ms +30 一月 2026 | 19:26:11,246 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1486ms +30 一月 2026 | 19:26:12,229 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 102, 104, 108, 105, 104, 203, 102, 206, 102, 209, 101, 201, 201] +30 一月 2026 | 19:26:12,229 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:26:12,229 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +30 一月 2026 | 19:26:12,229 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:26:12,229 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[109] +30 一月 2026 | 19:26:12,685 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 203, 208, 205, 207, 206, 203, 204, 107, 205, 103, 209, 104, 207] +30 一月 2026 | 19:26:12,686 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:26:12,686 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +30 一月 2026 | 19:26:12,686 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:26:12,686 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 109] +30 一月 2026 | 19:26:13,104 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 102, 104, 108, 105, 104, 203, 102, 206, 102, 101, 201, 201, 204] +30 一月 2026 | 19:26:13,104 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:26:13,104 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +30 一月 2026 | 19:26:13,104 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:26:13,104 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 109, 107] +30 一月 2026 | 19:26:13,486 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 203, 208, 205, 207, 206, 203, 204, 205, 103, 209, 104, 207, 203] +30 一月 2026 | 19:26:13,486 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:26:13,486 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +30 一月 2026 | 19:26:13,486 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:26:13,486 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 108, 109, 107] +30 一月 2026 | 19:26:13,725 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 105, 104, 203, 102, 206, 102, 101, 201, 201, 204] +30 一月 2026 | 19:26:13,725 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:26:13,725 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[103, 104, 102] +30 一月 2026 | 19:26:13,725 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:26:13,725 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 108, 109, 107, 103] +30 一月 2026 | 19:26:14,167 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 203, 208, 205, 207, 206, 203, 204, 205, 209, 104, 207, 203, 208] +30 一月 2026 | 19:26:14,167 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +30 一月 2026 | 19:26:14,167 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +30 一月 2026 | 19:26:14,167 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +30 一月 2026 | 19:26:14,167 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 108, 101, 109, 107, 104, 102] +30 一月 2026 | 19:26:17,686 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:26:19,043 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:2029ms +30 一月 2026 | 19:26:19,845 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1817ms +30 一月 2026 | 19:26:23,908 | INFO | qtp809762318-63 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:26:25,329 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2304ms +30 一月 2026 | 19:26:25,908 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2374ms +30 一月 2026 | 19:26:35,025 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: del__room[{user}:112233] time:1454ms +30 一月 2026 | 19:26:42,565 | INFO | qtp809762318-68 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:26:43,621 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1732ms +30 一月 2026 | 19:26:44,025 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1543ms +30 一月 2026 | 19:26:47,052 | INFO | qtp809762318-63 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:26:48,449 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:2020ms +30 一月 2026 | 19:26:49,144 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1998ms +30 一月 2026 | 19:26:52,571 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:35:32,717 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -24 一月 2026 | 18:35:40,292 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:35:40,910 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:35:51,993 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[201], weight=3, id=1, type=4, card=201}, {opcard=[201], weight=4, id=2, type=4, card=201}] -24 一月 2026 | 18:35:52,054 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 205, 204, 204, 203, 201, 201, 201, 201, 103, 103, 101, 101, 101] -24 一月 2026 | 18:35:52,054 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:35:52,054 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:35:52,054 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:35:52,054 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101] -24 一月 2026 | 18:36:02,580 | ERROR | Thread-107 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:26:52,571 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:36:02,594 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -24 一月 2026 | 18:36:03,384 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 205, 204, 204, 203, 201, 201, 201, 201, 103, 103, 101, 101, 104] -24 一月 2026 | 18:36:03,384 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:36:03,384 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:36:03,384 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:36:03,384 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 109] -24 一月 2026 | 18:36:05,110 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 205, 204, 204, 203, 201, 201, 201, 201, 103, 103, 101, 101, 103] -24 一月 2026 | 18:36:05,110 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:36:05,110 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:36:05,110 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:36:05,110 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 104, 109, 108] -24 一月 2026 | 18:36:05,503 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:36:06,196 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:36:20,503 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 205, 204, 204, 203, 201, 201, 201, 201, 103, 101, 101, 103, 107] -24 一月 2026 | 18:36:20,503 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:36:20,503 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:36:20,503 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:36:20,504 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 104, 103, 109, 108, 107] -24 一月 2026 | 18:36:22,709 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 205, 204, 204, 203, 201, 201, 201, 201, 103, 101, 101, 103, 208] -24 一月 2026 | 18:36:22,709 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:36:22,709 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:36:22,709 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:36:22,709 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 104, 103, 107, 109, 108, 107, 106] -24 一月 2026 | 18:36:22,724 | ERROR | Thread-111 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:26:52,573 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:26:52,573 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:27:06,968 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:27:08,085 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1790ms +30 一月 2026 | 19:27:08,728 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1687ms +30 一月 2026 | 19:27:38,208 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +30 一月 2026 | 19:27:39,112 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:27:39,144 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:27:39,248 | INFO | qtp809762318-69 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:27:39,430 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 +30 一月 2026 | 19:27:40,287 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1540ms +30 一月 2026 | 19:27:40,995 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:679465 +30 一月 2026 | 19:27:41,036 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:27:41,254 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:27:41,417 | INFO | qtp809762318-69 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:27:41,417 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:27:41,417 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:27:41,417 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:27:41,935 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:27:42,059 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:27:42,108 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:27:42,108 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:18732000 +30 一月 2026 | 19:27:42,108 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:27:42,108 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:27:42,256 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1589ms +30 一月 2026 | 19:27:42,286 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:27:42,349 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1578ms +30 一月 2026 | 19:27:42,595 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2a8bd546 +30 一月 2026 | 19:27:42,864 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:27:42,974 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:27:43,322 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1770ms +30 一月 2026 | 19:27:51,775 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +30 一月 2026 | 19:27:52,509 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:27:52,890 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101999 +30 一月 2026 | 19:27:54,190 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:751708 +30 一月 2026 | 19:27:54,231 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:27:54,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:27:54,625 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:27:54,626 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:27:54,626 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:27:54,686 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:27:54,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:27:55,121 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:27:55,175 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:27:55,175 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3916000 +30 一月 2026 | 19:27:55,175 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:27:55,175 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:27:55,348 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:27:55,647 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2a60cb41 +30 一月 2026 | 19:27:55,906 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:27:56,059 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:27:56,830 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:27:57,827 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1529ms +30 一月 2026 | 19:27:58,412 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1372ms +30 一月 2026 | 19:28:02,478 | INFO | qtp809762318-69 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:28:03,351 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1412ms +30 一月 2026 | 19:28:03,983 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1433ms +30 一月 2026 | 19:28:06,641 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:28:07,170 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:103555 +30 一月 2026 | 19:28:07,358 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:28:08,188 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:679465 +30 一月 2026 | 19:28:08,220 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:28:08,436 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:28:08,536 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:28:08,536 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:28:08,536 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:28:08,768 | INFO | qtp809762318-69 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:28:08,824 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:28:09,054 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:28:09,084 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:28:09,084 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8241000 +30 一月 2026 | 19:28:09,084 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:28:09,084 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:28:09,214 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:28:09,565 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@30475461 +30 一月 2026 | 19:28:09,727 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1360ms +30 一月 2026 | 19:28:09,769 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:28:09,875 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:28:10,188 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1246ms +30 一月 2026 | 19:28:10,206 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:28:11,043 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1358ms +30 一月 2026 | 19:28:11,679 | INFO | qtp809762318-100 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1296ms +30 一月 2026 | 19:28:12,586 | ERROR | Thread-48 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:36:22,740 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -24 一月 2026 | 18:36:26,349 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[203], weight=5, id=1, type=6, card=203}] -24 一月 2026 | 18:36:30,312 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:36:31,308 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:36:52,785 | ERROR | Thread-116 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:28:12,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:28:17,195 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:28:17,603 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: join_room[{user}:177475] time:4762ms +30 一月 2026 | 19:28:17,640 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101999 +30 一月 2026 | 19:28:19,067 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:751708 +30 一月 2026 | 19:28:19,100 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [177475]] +30 一月 2026 | 19:28:19,266 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [177475]] +30 一月 2026 | 19:28:19,395 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:28:19,395 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:28:19,395 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:28:19,694 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:28:19,795 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:28:19,826 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:28:19,826 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3916000 +30 一月 2026 | 19:28:19,826 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:28:19,826 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:28:19,983 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:28:20,201 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2a60cb41 +30 一月 2026 | 19:28:20,505 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:28:20,626 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:28:21,423 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:28:25,177 | INFO | qtp809762318-100 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:28:26,019 | INFO | qtp809762318-100 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1355ms +30 一月 2026 | 19:28:26,818 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1405ms +30 一月 2026 | 19:28:31,402 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:28:31,482 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:28:32,028 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 +30 一月 2026 | 19:28:32,596 | ERROR | Thread-52 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:36:52,801 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -24 一月 2026 | 18:36:55,536 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:36:56,281 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:37:12,577 | ERROR | Thread-120 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:28:32,599 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:28:33,506 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:679465 +30 一月 2026 | 19:28:33,560 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:28:33,805 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:28:33,901 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:28:33,901 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:28:33,901 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:28:34,497 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:28:34,637 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:28:34,674 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:28:34,674 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:18732000 +30 一月 2026 | 19:28:34,674 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:28:34,674 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:28:34,836 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:28:35,056 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2a8bd546 +30 一月 2026 | 19:28:35,270 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:28:35,394 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:28:42,597 | ERROR | Thread-56 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:37:12,592 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -24 一月 2026 | 18:37:20,406 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:37:21,148 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:37:42,708 | ERROR | Thread-124 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:28:42,598 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:28:52,971 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:28:54,535 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2488ms +30 一月 2026 | 19:28:54,659 | INFO | qtp809762318-100 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2077ms +30 一月 2026 | 19:28:57,158 | INFO | qtp809762318-100 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:28:58,596 | INFO | qtp809762318-100 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:2191ms +30 一月 2026 | 19:28:59,604 | INFO | qtp809762318-69 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:28:59,679 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:2099ms +30 一月 2026 | 19:29:00,975 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2031ms +30 一月 2026 | 19:29:01,801 | INFO | qtp809762318-100 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2261ms +30 一月 2026 | 19:29:11,181 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: join_room[{user}:177475] time:6914ms +30 一月 2026 | 19:29:14,589 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:29:16,116 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:2208ms +30 一月 2026 | 19:29:17,063 | INFO | qtp809762318-100 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:2034ms +30 一月 2026 | 19:29:24,058 | INFO | qtp809762318-100 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:29:25,236 | INFO | qtp809762318-100 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1755ms +30 一月 2026 | 19:29:28,170 | INFO | qtp809762318-109 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:29:29,205 | INFO | qtp809762318-109 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1748ms +30 一月 2026 | 19:29:32,057 | INFO | qtp809762318-109 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1752ms +30 一月 2026 | 19:29:39,236 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:29:40,719 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2188ms +30 一月 2026 | 19:29:41,241 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2197ms +30 一月 2026 | 19:29:41,559 | INFO | qtp809762318-109 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:29:42,853 | INFO | qtp809762318-109 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1867ms +30 一月 2026 | 19:29:43,763 | INFO | qtp809762318-100 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1911ms +30 一月 2026 | 19:30:55,055 | INFO | qtp809762318-109 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:30:56,289 | INFO | qtp809762318-109 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1928ms +30 一月 2026 | 19:31:00,209 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2004ms +30 一月 2026 | 19:31:14,446 | INFO | qtp809762318-67 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 +30 一月 2026 | 19:31:18,047 | INFO | qtp809762318-109 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:31:19,451 | INFO | qtp809762318-109 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:2060ms +30 一月 2026 | 19:31:20,029 | INFO | qtp809762318-112 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1905ms +30 一月 2026 | 19:31:21,129 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:7685ms +30 一月 2026 | 19:31:24,621 | INFO | qtp809762318-109 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:31:25,602 | INFO | qtp809762318-109 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1613ms +30 一月 2026 | 19:31:28,149 | INFO | qtp809762318-113 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:31:29,288 | INFO | qtp809762318-113 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1677ms +30 一月 2026 | 19:31:29,842 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1584ms +30 一月 2026 | 19:31:38,049 | INFO | qtp809762318-113 | taurus.web.WebFilter | | action: join_room[{user}:112233] time:4629ms +30 一月 2026 | 19:33:38,602 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 19:33:38,652 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 19:33:43,658 | INFO | qtp809762318-62 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:33:45,319 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:33:45,624 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2684ms +30 一月 2026 | 19:33:46,178 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2252ms +30 一月 2026 | 19:33:46,624 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1974ms +30 一月 2026 | 19:33:46,964 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1699ms +30 一月 2026 | 19:33:51,902 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:33:53,219 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:2002ms +30 一月 2026 | 19:33:54,850 | INFO | qtp809762318-63 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:33:55,860 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1650ms +30 一月 2026 | 19:34:03,262 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:34:04,459 | INFO | qtp809762318-62 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:34:04,699 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1991ms +30 一月 2026 | 19:34:05,624 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1776ms +30 一月 2026 | 19:34:10,662 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:34:10,731 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:34:11,298 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:103555 +30 一月 2026 | 19:34:12,580 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:941254 +30 一月 2026 | 19:34:12,631 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:34:12,890 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:34:13,005 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:34:13,005 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:34:13,005 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:34:13,288 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:34:13,406 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:34:13,451 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:34:13,451 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8241000 +30 一月 2026 | 19:34:13,451 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:34:13,451 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:34:13,705 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:34:13,961 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@b4b6ca0 +30 一月 2026 | 19:34:14,195 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:34:14,290 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:34:16,666 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1506ms +30 一月 2026 | 19:34:34,105 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1524ms +30 一月 2026 | 19:34:34,698 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:34:35,005 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:34:35,088 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:34:35,530 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 +30 一月 2026 | 19:34:35,566 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1329ms +30 一月 2026 | 19:34:36,389 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1448ms +30 一月 2026 | 19:34:37,064 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:941254 +30 一月 2026 | 19:34:37,103 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:34:37,274 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:34:37,370 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +30 一月 2026 | 19:34:37,409 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:34:37,458 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:34:38,292 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1284ms +30 一月 2026 | 19:34:39,165 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1183ms +30 一月 2026 | 19:34:42,702 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:37:42,724 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -24 一月 2026 | 18:37:45,372 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:37:46,010 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:38:02,581 | ERROR | Thread-129 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:34:42,704 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:34:44,228 | INFO | qtp809762318-69 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:34:45,070 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1308ms +30 一月 2026 | 19:34:46,113 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1636ms +30 一月 2026 | 19:34:47,222 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:34:48,161 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1478ms +30 一月 2026 | 19:34:48,885 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1492ms +30 一月 2026 | 19:34:56,367 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: join_room[{user}:115777] time:5434ms +30 一月 2026 | 19:35:15,488 | INFO | qtp809762318-69 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:35:16,732 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1843ms +30 一月 2026 | 19:35:17,157 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1570ms +30 一月 2026 | 19:35:17,751 | INFO | qtp809762318-68 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:35:18,571 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1237ms +30 一月 2026 | 19:35:19,916 | INFO | qtp809762318-62 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1564ms +30 一月 2026 | 19:40:30,062 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 19:40:30,112 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 19:40:36,470 | INFO | qtp809762318-63 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:40:37,740 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:2035ms +30 一月 2026 | 19:40:39,957 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1926ms +30 一月 2026 | 19:43:43,050 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 19:43:43,162 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 19:43:52,670 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +30 一月 2026 | 19:43:54,039 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:43:54,095 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:43:54,609 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 +30 一月 2026 | 19:43:56,990 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:461721 +30 一月 2026 | 19:43:57,072 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:43:57,393 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:43:57,593 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:43:57,593 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:43:57,593 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:43:58,114 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:43:58,289 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:43:58,356 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:43:58,357 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:18732000 +30 一月 2026 | 19:43:58,357 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:43:58,357 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:43:58,590 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:43:59,129 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@47c224de +30 一月 2026 | 19:43:59,408 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:43:59,633 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:44:10,017 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +30 一月 2026 | 19:44:11,012 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:44:11,471 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101999 +30 一月 2026 | 19:44:11,892 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:44:13,790 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:740858 +30 一月 2026 | 19:44:13,830 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:44:14,070 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:44:14,201 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:44:14,202 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:44:14,202 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:44:14,607 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:44:14,832 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:44:14,870 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:44:14,870 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3916000 +30 一月 2026 | 19:44:14,870 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:44:14,870 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:44:15,032 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:44:15,354 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@e20c4f7 +30 一月 2026 | 19:44:15,752 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:44:16,087 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:44:28,275 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:44:28,361 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:44:28,971 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 +30 一月 2026 | 19:44:31,045 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:740858 +30 一月 2026 | 19:44:31,091 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:44:31,341 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:44:31,475 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:44:31,475 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:44:31,475 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:44:31,633 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:38:02,596 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -24 一月 2026 | 18:38:10,445 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:38:11,025 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:41:10,804 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -24 一月 2026 | 18:41:10,851 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -24 一月 2026 | 18:41:12,138 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:41:13,111 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:909774 -24 一月 2026 | 18:41:13,124 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] -24 一月 2026 | 18:41:13,313 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:291186 -24 一月 2026 | 18:41:13,334 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] -24 一月 2026 | 18:41:13,595 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -24 一月 2026 | 18:41:13,967 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:41:14,208 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:41:14,301 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 -24 一月 2026 | 18:41:14,614 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:982153 -24 一月 2026 | 18:41:14,629 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:41:14,718 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:41:14,769 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:41:14,769 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:41:14,770 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 18:41:14,914 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 18:41:14,944 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 18:41:14,954 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 18:41:14,954 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:16208000 -24 一月 2026 | 18:41:14,954 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 18:41:14,954 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 18:41:15,014 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 18:41:15,077 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1d3b59a1 -24 一月 2026 | 18:41:15,187 | INFO | qtp1605283233-67 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 -24 一月 2026 | 18:41:15,211 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 18:41:15,239 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:41:16,285 | INFO | qtp1605283233-67 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:1464ms -24 一月 2026 | 18:41:24,833 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 204, 208, 201, 102, 208, 203, 105, 101, 202, 205, 202, 206, 208] -24 一月 2026 | 18:41:24,833 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:41:24,833 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:41:24,834 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:41:24,834 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] -24 一月 2026 | 18:41:36,877 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:41:38,243 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:982153 -24 一月 2026 | 18:41:38,257 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [112233,101555]] -24 一月 2026 | 18:41:38,320 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [112233,101555]] -24 一月 2026 | 18:41:38,367 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:41:38,367 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:41:38,367 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom enter group fail, room full:g{330800}:m101666 room_key:room:982153 -24 一月 2026 | 18:41:38,579 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -24 一月 2026 | 18:41:38,985 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:41:39,182 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:41:39,292 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101666 -24 一月 2026 | 18:41:39,668 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:508200 -24 一月 2026 | 18:41:39,678 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:41:39,777 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:41:39,803 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:41:39,803 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:41:39,803 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 18:41:39,926 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 18:41:39,965 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 18:41:39,982 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=2, id=1, type=2, card=208}, {opcard=[208], weight=3, id=2, type=3, card=208}] -24 一月 2026 | 18:41:39,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 18:41:39,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6957000 -24 一月 2026 | 18:41:39,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 18:41:39,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 18:41:40,114 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 18:41:40,122 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] -24 一月 2026 | 18:41:40,185 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 204, 208, 201, 102, 208, 203, 105, 202, 205, 202, 206, 208, 208] -24 一月 2026 | 18:41:40,185 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:41:40,185 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:41:40,185 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:41:40,185 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 208] -24 一月 2026 | 18:41:40,205 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4223d7e8 -24 一月 2026 | 18:41:40,318 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 18:41:40,358 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:41:51,802 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] -24 一月 2026 | 18:41:51,863 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 201, 102, 208, 203, 105, 202, 205, 202, 206, 208, 208, 103] -24 一月 2026 | 18:41:51,863 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:41:51,863 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:41:51,863 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:41:51,863 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 208, 109] -24 一月 2026 | 18:41:54,919 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] -24 一月 2026 | 18:41:54,982 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 102, 208, 203, 105, 202, 205, 202, 206, 208, 208, 103, 107] -24 一月 2026 | 18:41:54,982 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:41:54,982 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:41:54,982 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:41:54,982 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 201, 208, 109, 107] -24 一月 2026 | 18:41:58,667 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] -24 一月 2026 | 18:41:58,727 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 102, 208, 105, 202, 205, 202, 206, 208, 208, 103, 107, 208] -24 一月 2026 | 18:41:58,728 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:41:58,728 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:41:58,728 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:41:58,728 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 201, 203, 208, 109, 107, 205] -24 一月 2026 | 18:42:01,952 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:42:02,536 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:42:26,814 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:44:31,638 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:44:31,980 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:44:32,204 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:44:32,283 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:44:32,283 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:18732000 +30 一月 2026 | 19:44:32,283 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:44:32,283 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:44:32,569 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:44:32,994 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@47c224de +30 一月 2026 | 19:44:33,272 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:44:33,429 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:44:41,153 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:44:41,692 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:103555 +30 一月 2026 | 19:44:43,156 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:461721 +30 一月 2026 | 19:44:43,192 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:44:43,394 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:44:43,572 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:44:43,572 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:44:43,572 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:44:44,075 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:44:44,191 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:44:44,230 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:44:44,230 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8241000 +30 一月 2026 | 19:44:44,230 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:44:44,230 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:44:44,395 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:44:44,651 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2432e527 +30 一月 2026 | 19:44:44,955 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:44:45,115 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:44:45,476 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:44:51,636 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:42:26,817 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -24 一月 2026 | 18:42:26,896 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:42:27,458 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:42:27,901 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:127) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:42:27,901 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:127) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:42:27,901 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:127) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:42:27,903 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnReceive -24 一月 2026 | 18:42:27,903 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnReceive -24 一月 2026 | 18:42:27,903 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnReceive -24 一月 2026 | 18:42:49,327 | INFO | qtp1605283233-64 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 -24 一月 2026 | 18:42:51,230 | INFO | qtp1605283233-64 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:2208ms -24 一月 2026 | 18:42:51,792 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:42:52,079 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:42:52,380 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:42:52,589 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101777 -24 一月 2026 | 18:42:52,980 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:243785 -24 一月 2026 | 18:42:53,005 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] -24 一月 2026 | 18:42:53,058 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] -24 一月 2026 | 18:42:53,089 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:42:53,089 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:42:53,089 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 18:42:53,280 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 18:42:53,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 18:42:53,326 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 18:42:53,327 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:7907000 -24 一月 2026 | 18:42:53,327 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 18:42:53,327 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 18:42:53,364 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 18:42:53,613 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4f69f3e6 -24 一月 2026 | 18:42:53,736 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 18:42:53,786 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:43:03,323 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 204, 208, 201, 102, 208, 203, 105, 101, 202, 205, 202, 206, 208] -24 一月 2026 | 18:43:03,323 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:43:03,323 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:43:03,323 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:43:03,323 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] -24 一月 2026 | 18:43:06,907 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[202, 201], weight=1, id=1, type=1, card=203}, {opcard=[204, 202], weight=1, id=2, type=1, card=203}, {opcard=[204, 205], weight=1, id=3, type=1, card=203}] -24 一月 2026 | 18:43:07,031 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] -24 一月 2026 | 18:43:07,092 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 204, 208, 201, 102, 208, 203, 105, 202, 205, 202, 206, 208, 208] -24 一月 2026 | 18:43:07,092 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:43:07,092 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:43:07,092 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:43:07,092 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 203] -24 一月 2026 | 18:43:09,919 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] -24 一月 2026 | 18:43:09,981 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 201, 102, 208, 203, 105, 202, 205, 202, 206, 208, 208, 103] -24 一月 2026 | 18:43:09,981 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:43:09,981 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:43:09,981 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:43:09,981 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 203, 104] -24 一月 2026 | 18:43:11,938 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] -24 一月 2026 | 18:43:12,001 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 102, 208, 203, 105, 202, 205, 202, 206, 208, 208, 103, 107] -24 一月 2026 | 18:43:12,001 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:43:12,001 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:43:12,001 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:43:12,001 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 201, 203, 104, 107] -24 一月 2026 | 18:43:13,232 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] -24 一月 2026 | 18:43:13,293 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 102, 208, 105, 202, 205, 202, 206, 208, 208, 103, 107, 107] -24 一月 2026 | 18:43:13,293 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:43:13,293 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:43:13,293 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:43:13,293 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 201, 203, 203, 104, 107, 205] -24 一月 2026 | 18:43:16,883 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:43:17,417 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] -24 一月 2026 | 18:43:17,478 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 102, 208, 105, 202, 205, 202, 208, 208, 103, 107, 107, 207] -24 一月 2026 | 18:43:17,478 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:43:17,478 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:43:17,478 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:43:17,478 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 201, 203, 206, 203, 104, 107, 205, 209] -24 一月 2026 | 18:43:17,860 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:243785 -24 一月 2026 | 18:43:17,877 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [112233,101777]] -24 一月 2026 | 18:43:17,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [112233,101777]] -24 一月 2026 | 18:43:17,962 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:43:17,962 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:43:17,962 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom enter group fail, room full:g{330800}:m101888 room_key:room:243785 -24 一月 2026 | 18:43:18,161 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -24 一月 2026 | 18:43:18,515 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -24 一月 2026 | 18:43:18,868 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:43:18,963 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101888 -24 一月 2026 | 18:43:19,272 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:197235 -24 一月 2026 | 18:43:19,288 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:43:19,342 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:43:19,355 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[108, 107], weight=1, id=1, type=1, card=109}] -24 一月 2026 | 18:43:19,389 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:43:19,389 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:43:19,389 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 18:43:19,417 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] -24 一月 2026 | 18:43:19,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 102, 208, 105, 202, 205, 202, 208, 208, 107, 107, 207, 203] -24 一月 2026 | 18:43:19,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:43:19,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:43:19,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:43:19,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 201, 203, 206, 103, 203, 104, 107, 205, 209, 109] -24 一月 2026 | 18:43:19,518 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 18:43:19,547 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 18:43:19,564 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 18:43:19,564 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:7026000 -24 一月 2026 | 18:43:19,565 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 18:43:19,565 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 18:43:19,637 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 18:43:19,699 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@59b1a74 -24 一月 2026 | 18:43:19,758 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 18:43:19,808 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:43:21,377 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[202, 203], weight=1, id=1, type=1, card=201}] -24 一月 2026 | 18:43:21,440 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] -24 一月 2026 | 18:43:21,502 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 102, 208, 105, 202, 205, 202, 208, 208, 107, 207, 203, 104] -24 一月 2026 | 18:43:21,502 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:43:21,502 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:43:21,502 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:43:21,502 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 201, 203, 206, 103, 107, 203, 104, 107, 205, 209, 109, 201] -24 一月 2026 | 18:43:28,261 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208, 207], weight=1, id=1, type=1, card=209}] -24 一月 2026 | 18:43:28,322 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] -24 一月 2026 | 18:43:28,385 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 102, 208, 105, 202, 205, 202, 208, 208, 207, 203, 104, 106] -24 一月 2026 | 18:43:28,385 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:43:28,385 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:43:28,385 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:43:28,385 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 201, 203, 206, 103, 107, 107, 203, 104, 107, 205, 209, 109, 201, 209] -24 一月 2026 | 18:43:30,226 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[105, 106], weight=1, id=1, type=1, card=104}] -24 一月 2026 | 18:43:30,287 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] -24 一月 2026 | 18:43:30,349 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 102, 208, 105, 202, 205, 202, 208, 208, 203, 104, 106, 107] -24 一月 2026 | 18:43:30,349 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:43:30,349 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:43:30,349 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:43:30,349 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 201, 203, 206, 103, 107, 107, 207, 203, 104, 107, 205, 209, 109, 201, 209, 104] -24 一月 2026 | 18:43:32,356 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[202], weight=2, id=1, type=2, card=202}] -24 一月 2026 | 18:43:32,418 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] -24 一月 2026 | 18:43:32,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 102, 208, 105, 202, 205, 202, 208, 208, 104, 106, 107, 105] -24 一月 2026 | 18:43:32,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:43:32,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:43:32,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:43:32,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 201, 203, 206, 103, 107, 107, 207, 203, 203, 104, 107, 205, 209, 109, 201, 209, 104, 202] -24 一月 2026 | 18:43:33,630 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] -24 一月 2026 | 18:43:33,691 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 102, 208, 105, 202, 205, 202, 208, 208, 106, 107, 105, 206] -24 一月 2026 | 18:43:33,691 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:43:33,691 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:43:33,691 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:43:33,691 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 201, 203, 206, 103, 107, 107, 207, 203, 104, 203, 104, 107, 205, 209, 109, 201, 209, 104, 202, 206] -24 一月 2026 | 18:43:35,541 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[108, 107], weight=1, id=1, type=1, card=109}] -24 一月 2026 | 18:43:35,602 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] -24 一月 2026 | 18:43:35,665 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 102, 208, 105, 202, 205, 202, 208, 208, 107, 105, 206, 104] -24 一月 2026 | 18:43:35,665 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] -24 一月 2026 | 18:43:35,665 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] -24 一月 2026 | 18:43:35,665 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] -24 一月 2026 | 18:43:35,665 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 201, 203, 206, 103, 107, 107, 207, 203, 104, 106, 203, 104, 107, 205, 209, 109, 201, 209, 104, 202, 206, 109] -24 一月 2026 | 18:43:37,209 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] -24 一月 2026 | 18:43:41,786 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:44:01,260 | ERROR | Thread-56 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:44:51,639 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:44:57,098 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:44:57,175 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:44:57,591 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101999 +30 一月 2026 | 19:44:59,178 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:461721 +30 一月 2026 | 19:44:59,236 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:44:59,477 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:44:59,630 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:44:59,630 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:44:59,630 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:45:00,036 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:45:00,155 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:45:00,215 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:45:00,215 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3916000 +30 一月 2026 | 19:45:00,215 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:45:00,215 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:45:00,409 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:45:00,715 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@e20c4f7 +30 一月 2026 | 19:45:00,991 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:45:01,109 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:45:01,646 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:44:07,054 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:44:31,101 | ERROR | Thread-60 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:45:01,648 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:45:03,249 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1823ms +30 一月 2026 | 19:45:07,459 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1522ms +30 一月 2026 | 19:45:08,537 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:45:09,090 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:103555 +30 一月 2026 | 19:45:10,204 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:740858 +30 一月 2026 | 19:45:10,240 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:45:10,422 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:45:10,576 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:45:10,576 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:45:10,577 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:45:10,948 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:45:11,156 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:45:11,205 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:45:11,205 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8241000 +30 一月 2026 | 19:45:11,205 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:45:11,206 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:45:11,353 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:45:11,583 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2432e527 +30 一月 2026 | 19:45:11,805 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:45:11,947 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:45:12,738 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:45:16,339 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: join_room[{user}:177475] time:5778ms +30 一月 2026 | 19:45:21,580 | INFO | qtp809762318-69 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:45:21,643 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:44:32,265 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:44:51,147 | ERROR | Thread-65 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:45:21,963 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:740858 +30 一月 2026 | 19:45:22,024 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [103555]] +30 一月 2026 | 19:45:22,287 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [103555]] +30 一月 2026 | 19:45:22,431 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:45:22,431 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:45:22,431 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:45:22,686 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1662ms +30 一月 2026 | 19:45:22,764 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:45:22,870 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:45:22,904 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:45:22,905 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3916000 +30 一月 2026 | 19:45:22,905 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:45:22,905 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:45:23,060 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:45:23,165 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1428ms +30 一月 2026 | 19:45:23,312 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@e20c4f7 +30 一月 2026 | 19:45:23,543 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:45:23,586 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:45:23,771 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:45:24,469 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +30 一月 2026 | 19:45:25,310 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:45:25,343 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:45:25,657 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101999 +30 一月 2026 | 19:45:26,859 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:356455 +30 一月 2026 | 19:45:26,901 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:45:27,050 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +30 一月 2026 | 19:45:27,153 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +30 一月 2026 | 19:45:27,186 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:45:30,678 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: join_room[{user}:115777] time:4548ms +30 一月 2026 | 19:45:31,647 | ERROR | Thread-49 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:44:56,715 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:45:21,224 | ERROR | Thread-69 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:45:31,650 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:45:38,242 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:45:38,319 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:45:38,816 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:103555 +30 一月 2026 | 19:45:40,040 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:461721 +30 一月 2026 | 19:45:40,082 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:45:40,257 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:45:40,370 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:45:40,370 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:45:40,370 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:45:40,750 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:45:40,863 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:45:40,897 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:45:40,898 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8241000 +30 一月 2026 | 19:45:40,898 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:45:40,898 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:45:41,038 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:45:41,294 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2432e527 +30 一月 2026 | 19:45:41,580 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:45:41,648 | ERROR | Thread-53 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:45:21,862 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:45:41,273 | ERROR | Thread-74 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:45:41,652 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:45:41,695 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:45:53,293 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:45:57,194 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:7241ms +30 一月 2026 | 19:46:01,767 | INFO | qtp809762318-86 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:5373ms +30 一月 2026 | 19:46:01,960 | ERROR | Thread-57 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:45:46,896 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:46:11,083 | ERROR | Thread-78 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:46:01,963 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:46:07,672 | INFO | qtp809762318-64 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:46:10,076 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:3191ms +30 一月 2026 | 19:46:10,802 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:4538ms +30 一月 2026 | 19:46:14,526 | INFO | qtp809762318-86 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:46:17,851 | INFO | qtp809762318-63 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:46:19,844 | INFO | qtp809762318-86 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:8781ms +30 一月 2026 | 19:46:20,805 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:4321ms +30 一月 2026 | 19:46:20,926 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:46:21,126 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:46:21,657 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:46:21,664 | ERROR | Thread-61 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:46:11,843 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:46:31,130 | ERROR | Thread-82 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:46:21,665 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:46:21,802 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:103555 +30 一月 2026 | 19:46:22,074 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:4890ms +30 一月 2026 | 19:46:23,448 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2715ms +30 一月 2026 | 19:46:23,547 | INFO | qtp809762318-86 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2627ms +30 一月 2026 | 19:46:23,996 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:740858 +30 一月 2026 | 19:46:24,021 | INFO | qtp809762318-64 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2749ms +30 一月 2026 | 19:46:24,059 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:46:24,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:46:24,466 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:46:24,466 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:46:24,466 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:46:24,998 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:46:25,161 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:46:25,226 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:46:25,226 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8241000 +30 一月 2026 | 19:46:25,226 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:46:25,226 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:46:25,513 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:46:26,143 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2432e527 +30 一月 2026 | 19:46:28,066 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:46:29,974 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:46:30,839 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:46:32,891 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2704ms +30 一月 2026 | 19:46:33,018 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:3306ms +30 一月 2026 | 19:46:43,297 | INFO | qtp809762318-86 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:46:45,417 | INFO | qtp809762318-86 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2854ms +30 一月 2026 | 19:46:51,777 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:8601ms +30 一月 2026 | 19:46:54,300 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:46:54,407 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:46:55,028 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:103555 +30 一月 2026 | 19:46:56,383 | INFO | qtp809762318-86 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:46:56,685 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:740858 +30 一月 2026 | 19:46:56,766 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:46:57,193 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:46:57,371 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:46:57,371 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:46:57,371 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:46:57,785 | INFO | qtp809762318-86 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:2425ms +30 一月 2026 | 19:46:57,947 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:46:58,108 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:46:58,173 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:46:58,173 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8241000 +30 一月 2026 | 19:46:58,173 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:46:58,173 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:46:58,366 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:46:58,418 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:2373ms +30 一月 2026 | 19:46:58,725 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2432e527 +30 一月 2026 | 19:46:59,040 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:46:59,235 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:47:01,675 | ERROR | Thread-65 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:46:36,817 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:47:01,196 | ERROR | Thread-87 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:47:01,677 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:47:03,206 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:47:04,541 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:3516ms +30 一月 2026 | 19:47:05,861 | INFO | qtp809762318-86 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:3551ms +30 一月 2026 | 19:47:13,743 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:47:15,406 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:4443ms +30 一月 2026 | 19:47:15,481 | INFO | qtp809762318-86 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:3974ms +30 一月 2026 | 19:47:15,621 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:47:16,780 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1881ms +30 一月 2026 | 19:47:17,464 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:47:17,586 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:47:17,920 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:2348ms +30 一月 2026 | 19:47:18,315 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 +30 一月 2026 | 19:47:20,831 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:740858 +30 一月 2026 | 19:47:20,904 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:47:21,218 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:47:21,458 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:47:21,458 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:47:21,458 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:47:21,947 | INFO | qtp809762318-63 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:47:22,120 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:47:22,310 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:47:22,363 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:47:22,363 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:18732000 +30 一月 2026 | 19:47:22,363 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:47:22,363 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:47:22,627 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:47:23,368 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@47c224de +30 一月 2026 | 19:47:23,694 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2570ms +30 一月 2026 | 19:47:23,781 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:47:23,947 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:47:24,302 | INFO | qtp809762318-86 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2473ms +30 一月 2026 | 19:47:30,334 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:47:31,631 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2090ms +30 一月 2026 | 19:47:31,677 | ERROR | Thread-69 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:47:01,804 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:47:21,238 | ERROR | Thread-91 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:47:32,340 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1971ms +30 一月 2026 | 19:47:34,311 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:47:35,128 | INFO | qtp809762318-67 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:47:35,584 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2014ms +30 一月 2026 | 19:47:36,275 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:47:36,402 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1959ms +30 一月 2026 | 19:47:39,425 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:47:39,685 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:47:40,448 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2929ms +30 一月 2026 | 19:47:40,451 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 +30 一月 2026 | 19:47:42,338 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:740858 +30 一月 2026 | 19:47:42,397 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:47:42,783 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:47:42,960 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:47:42,960 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:47:42,960 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:47:43,561 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:47:43,750 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:47:43,806 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:47:43,806 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:18732000 +30 一月 2026 | 19:47:43,806 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:47:43,806 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:47:44,038 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:47:44,428 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@47c224de +30 一月 2026 | 19:47:44,843 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:47:45,022 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:47:53,170 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:47:57,606 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:5241ms +30 一月 2026 | 19:48:01,687 | ERROR | Thread-73 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:47:27,072 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:47:51,299 | ERROR | Thread-96 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:48:07,080 | INFO | qtp809762318-86 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:14048ms +30 一月 2026 | 19:48:07,251 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:48:08,805 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:48:09,628 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:6460ms +30 一月 2026 | 19:48:10,996 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:7160ms +30 一月 2026 | 19:48:14,317 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +30 一月 2026 | 19:48:14,406 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +30 一月 2026 | 19:48:14,587 | INFO | qtp809762318-121 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:48:14,852 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:103555 +30 一月 2026 | 19:48:15,149 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: join_room[{user}:177475] time:14872ms +30 一月 2026 | 19:48:15,589 | INFO | qtp809762318-121 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1494ms +30 一月 2026 | 19:48:16,320 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:740858 +30 一月 2026 | 19:48:16,386 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:48:16,621 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +30 一月 2026 | 19:48:16,846 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:2201ms +30 一月 2026 | 19:48:16,907 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +30 一月 2026 | 19:48:16,907 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +30 一月 2026 | 19:48:16,907 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +30 一月 2026 | 19:48:17,309 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +30 一月 2026 | 19:48:17,447 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +30 一月 2026 | 19:48:17,490 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +30 一月 2026 | 19:48:17,490 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8241000 +30 一月 2026 | 19:48:17,490 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +30 一月 2026 | 19:48:17,490 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +30 一月 2026 | 19:48:17,660 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +30 一月 2026 | 19:48:17,941 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2432e527 +30 一月 2026 | 19:48:18,221 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +30 一月 2026 | 19:48:18,373 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[8.138.242.190, 6311, 8.138.242.190] +30 一月 2026 | 19:48:19,203 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: join_room[{user}:115777] time:6060ms +30 一月 2026 | 19:48:21,692 | ERROR | Thread-77 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:47:51,956 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:48:11,095 | ERROR | Thread-100 | client.io.ISocket | | Receiving failed.: +30 一月 2026 | 19:48:21,695 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:48:45,660 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:48:46,842 | INFO | qtp809762318-86 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:48:46,976 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:1856ms +30 一月 2026 | 19:48:47,872 | INFO | qtp809762318-86 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1612ms +30 一月 2026 | 19:48:48,851 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1865ms +30 一月 2026 | 19:48:54,341 | INFO | qtp809762318-86 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:1897ms +30 一月 2026 | 19:49:01,712 | ERROR | Thread-82 | client.io.ISocket | | Receiving failed.: taurus.client.io.TSocketException at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:48:16,856 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:48:41,150 | ERROR | Thread-104 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:48:42,013 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:49:01,193 | ERROR | Thread-109 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:49:06,888 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:49:31,251 | ERROR | Thread-113 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:49:31,933 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:49:51,271 | ERROR | Thread-118 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:49:56,771 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:49:57,788 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -24 一月 2026 | 18:49:58,446 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:49:58,560 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 -24 一月 2026 | 18:49:59,237 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:815751 -24 一月 2026 | 18:49:59,248 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:49:59,321 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:49:59,365 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:49:59,366 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:49:59,366 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 18:49:59,473 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 18:49:59,499 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 18:49:59,510 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 18:49:59,510 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:16207000 -24 一月 2026 | 18:49:59,510 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 18:49:59,510 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 18:49:59,547 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 18:49:59,627 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1d3b59a1 -24 一月 2026 | 18:49:59,711 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 18:49:59,753 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:50:11,110 | ERROR | Thread-48 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:50:11,111 | ERROR | Thread-52 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:50:21,815 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:50:21,907 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101666 login -24 一月 2026 | 18:50:21,918 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 -24 一月 2026 | 18:50:23,894 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -24 一月 2026 | 18:50:24,563 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:50:24,721 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101666 -24 一月 2026 | 18:50:25,137 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:240054 -24 一月 2026 | 18:50:25,158 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:50:25,251 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:50:25,331 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:50:25,331 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:50:25,331 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 18:50:25,426 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 18:50:25,466 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 18:50:25,480 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 18:50:25,480 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6957000 -24 一月 2026 | 18:50:25,480 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 18:50:25,480 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 18:50:25,541 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 18:50:25,642 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4223d7e8 -24 一月 2026 | 18:50:25,720 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 18:50:25,752 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:50:31,187 | ERROR | Thread-122 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:50:46,866 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:50:51,277 | ERROR | Thread-126 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:51:11,322 | ERROR | Thread-130 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:51:11,770 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:51:12,343 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:51:12,492 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 -24 一月 2026 | 18:51:12,834 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:240054 -24 一月 2026 | 18:51:12,842 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] -24 一月 2026 | 18:51:12,913 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] -24 一月 2026 | 18:51:12,947 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:51:12,947 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:51:12,947 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 18:51:13,095 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 18:51:13,132 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 18:51:13,147 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 18:51:13,147 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:16207000 -24 一月 2026 | 18:51:13,147 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 18:51:13,147 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 18:51:13,182 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 18:51:13,250 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1d3b59a1 -24 一月 2026 | 18:51:13,330 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 18:51:13,355 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:51:41,097 | ERROR | Thread-135 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:51:44,597 | INFO | qtp1605283233-137 | group.controller.GroupController | | jefe_test: 177475 -24 一月 2026 | 18:51:44,920 | INFO | qtp1605283233-137 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:479ms -24 一月 2026 | 18:51:46,432 | INFO | qtp1605283233-137 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:421ms -24 一月 2026 | 18:51:50,357 | INFO | qtp1605283233-67 | group.controller.GroupController | | jefe_test: 177475 -24 一月 2026 | 18:51:50,643 | INFO | qtp1605283233-67 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:428ms -24 一月 2026 | 18:51:51,150 | INFO | qtp1605283233-183 | group.controller.GroupController | | jefe_test: 177475 -24 一月 2026 | 18:51:51,552 | INFO | qtp1605283233-183 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:566ms -24 一月 2026 | 18:51:52,917 | INFO | qtp1605283233-137 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:496ms -24 一月 2026 | 18:52:07,748 | INFO | qtp1605283233-183 | taurus.web.WebFilter | | action: get_partner_stat[{user}:177475] time:849ms -24 一月 2026 | 18:52:41,173 | INFO | qtp1605283233-183 | group.controller.GroupController | | jefe_test: 177475 -24 一月 2026 | 18:52:41,568 | INFO | qtp1605283233-183 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:545ms -24 一月 2026 | 18:52:42,681 | INFO | qtp1605283233-67 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:427ms -24 一月 2026 | 18:53:05,120 | INFO | qtp1605283233-183 | group.controller.GroupController | | jefe_test: 177475 -24 一月 2026 | 18:53:05,374 | INFO | qtp1605283233-183 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:424ms -24 一月 2026 | 18:53:06,076 | INFO | qtp1605283233-183 | group.controller.GroupController | | jefe_test: 177475 -24 一月 2026 | 18:53:06,320 | INFO | qtp1605283233-183 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:366ms -24 一月 2026 | 18:53:07,760 | INFO | qtp1605283233-184 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:427ms -24 一月 2026 | 18:54:19,201 | INFO | qtp1605283233-183 | group.controller.GroupController | | jefe_test: 177475 -24 一月 2026 | 18:54:19,731 | INFO | qtp1605283233-183 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:740ms -24 一月 2026 | 18:54:19,984 | INFO | qtp1605283233-183 | group.controller.GroupController | | jefe_test: 177475 -24 一月 2026 | 18:54:20,252 | INFO | qtp1605283233-183 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:399ms -24 一月 2026 | 18:54:20,983 | INFO | qtp1605283233-178 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:450ms -24 一月 2026 | 18:54:24,463 | INFO | qtp1605283233-183 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 -24 一月 2026 | 18:54:26,312 | INFO | qtp1605283233-183 | taurus.web.WebFilter | | action: match_room[{user}:177475] time:2273ms -24 一月 2026 | 18:54:56,646 | INFO | qtp1605283233-178 | taurus.web.WebFilter | | action: get_partner_stat[{user}:177475] time:764ms -24 一月 2026 | 18:54:56,814 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:54:56,898 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101555 login -24 一月 2026 | 18:54:56,929 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 -24 一月 2026 | 18:54:58,478 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:807953 -24 一月 2026 | 18:54:58,521 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] -24 一月 2026 | 18:54:58,825 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -24 一月 2026 | 18:54:59,367 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:54:59,477 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 -24 一月 2026 | 18:54:59,494 | INFO | qtp1605283233-184 | taurus.web.WebFilter | | action: get_partner_stat_member[{user}:177475] time:409ms -24 一月 2026 | 18:54:59,747 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:312130 -24 一月 2026 | 18:54:59,758 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:54:59,836 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:54:59,866 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:54:59,866 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:54:59,866 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 18:55:00,098 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 18:55:00,144 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 18:55:00,153 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 18:55:00,153 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:16207000 -24 一月 2026 | 18:55:00,153 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 18:55:00,153 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 18:55:00,226 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 18:55:00,387 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1d3b59a1 -24 一月 2026 | 18:55:00,567 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 18:55:00,618 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:55:04,088 | INFO | qtp1605283233-187 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 -24 一月 2026 | 18:55:05,390 | INFO | qtp1605283233-187 | taurus.web.WebFilter | | action: match_room[{user}:177475] time:1642ms -24 一月 2026 | 18:55:21,764 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:55:22,085 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101666 login -24 一月 2026 | 18:55:22,098 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 -24 一月 2026 | 18:55:23,486 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:312130 -24 一月 2026 | 18:55:23,500 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [177475,101555]] -24 一月 2026 | 18:55:23,535 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [177475,101555]] -24 一月 2026 | 18:55:23,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:55:23,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:55:23,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom enter group fail, room full:g{330800}:m101666 room_key:room:312130 -24 一月 2026 | 18:55:23,733 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -24 一月 2026 | 18:55:24,236 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:55:24,318 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101666 -24 一月 2026 | 18:55:24,661 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:851507 -24 一月 2026 | 18:55:24,671 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:55:24,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:55:24,751 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:55:24,751 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:55:24,751 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 18:55:24,855 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 18:55:24,877 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 18:55:24,893 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 18:55:24,893 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6957000 -24 一月 2026 | 18:55:24,893 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 18:55:24,893 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 18:55:24,987 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 18:55:25,075 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4223d7e8 -24 一月 2026 | 18:55:25,168 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 18:55:25,205 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:55:31,295 | ERROR | Thread-143 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:55:46,958 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:55:51,181 | ERROR | Thread-147 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:55:59,476 | INFO | qtp1605283233-184 | group.controller.GroupController | | jefe_test: 177475 -24 一月 2026 | 18:55:59,716 | INFO | qtp1605283233-184 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:377ms -24 一月 2026 | 18:56:00,312 | INFO | qtp1605283233-178 | group.controller.GroupController | | jefe_test: 177475 -24 一月 2026 | 18:56:00,590 | INFO | qtp1605283233-178 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:411ms -24 一月 2026 | 18:56:11,748 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:56:11,807 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101555 login -24 一月 2026 | 18:56:11,819 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 -24 一月 2026 | 18:56:13,333 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:851507 -24 一月 2026 | 18:56:13,347 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] -24 一月 2026 | 18:56:13,496 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:312130 -24 一月 2026 | 18:56:13,505 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] -24 一月 2026 | 18:56:13,825 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -24 一月 2026 | 18:56:14,222 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:56:14,345 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 -24 一月 2026 | 18:56:14,621 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:395642 -24 一月 2026 | 18:56:14,653 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:56:14,715 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:56:14,745 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:56:14,745 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:56:14,745 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 18:56:14,843 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 18:56:14,878 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 18:56:14,891 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 18:56:14,891 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:16206000 -24 一月 2026 | 18:56:14,891 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 18:56:14,891 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 18:56:14,935 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 18:56:15,007 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1d3b59a1 -24 一月 2026 | 18:56:15,062 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 18:56:15,132 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:56:18,026 | INFO | qtp1605283233-188 | group.controller.GroupController | | jefe_test: 177475 -24 一月 2026 | 18:56:18,403 | INFO | qtp1605283233-188 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:509ms -24 一月 2026 | 18:56:22,002 | INFO | qtp1605283233-184 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:466ms -24 一月 2026 | 18:56:25,109 | INFO | qtp1605283233-178 | taurus.web.WebFilter | | action: join_room[{user}:177475] time:1941ms -24 一月 2026 | 18:56:37,398 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:56:37,898 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101666 login -24 一月 2026 | 18:56:37,915 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 -24 一月 2026 | 18:56:39,591 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:395642 -24 一月 2026 | 18:56:39,610 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [101555,177475]] -24 一月 2026 | 18:56:39,652 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [101555,177475]] -24 一月 2026 | 18:56:39,728 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:56:39,729 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:56:39,729 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom enter group fail, room full:g{330800}:m101666 room_key:room:395642 -24 一月 2026 | 18:56:40,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -24 一月 2026 | 18:56:40,902 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:56:41,038 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101666 -24 一月 2026 | 18:56:41,263 | ERROR | Thread-151 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:56:41,703 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:530679 -24 一月 2026 | 18:56:41,715 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:56:41,860 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:56:41,906 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:56:41,906 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:56:41,906 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 18:56:42,110 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 18:56:42,171 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 18:56:42,213 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 18:56:42,213 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6957000 -24 一月 2026 | 18:56:42,213 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 18:56:42,213 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 18:56:42,298 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 18:56:42,497 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4223d7e8 -24 一月 2026 | 18:56:43,035 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 18:56:43,140 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:57:02,297 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:57:08,835 | INFO | qtp1605283233-184 | group.controller.GroupController | | jefe_test: 177475 -24 一月 2026 | 18:57:09,118 | INFO | qtp1605283233-184 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:446ms -24 一月 2026 | 18:57:09,522 | INFO | qtp1605283233-184 | group.controller.GroupController | | jefe_test: 177475 -24 一月 2026 | 18:57:09,803 | INFO | qtp1605283233-184 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:406ms -24 一月 2026 | 18:57:11,141 | ERROR | Thread-155 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:57:15,710 | INFO | qtp1605283233-178 | group.controller.GroupController | | jefe_test: 177475 -24 一月 2026 | 18:57:16,021 | INFO | qtp1605283233-178 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:628ms -24 一月 2026 | 18:57:26,713 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:57:26,802 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101777 login -24 一月 2026 | 18:57:26,811 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 -24 一月 2026 | 18:57:28,400 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:395642 -24 一月 2026 | 18:57:28,410 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] -24 一月 2026 | 18:57:28,617 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:530679 -24 一月 2026 | 18:57:28,656 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] -24 一月 2026 | 18:57:28,855 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -24 一月 2026 | 18:57:29,311 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:57:29,487 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101777 -24 一月 2026 | 18:57:29,827 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:801562 -24 一月 2026 | 18:57:29,835 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:57:29,895 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:57:29,935 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:57:29,935 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:57:29,935 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 18:57:30,081 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 18:57:30,107 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 18:57:30,117 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 18:57:30,117 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:7906000 -24 一月 2026 | 18:57:30,117 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 18:57:30,117 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 18:57:30,174 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 18:57:30,236 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4f69f3e6 -24 一月 2026 | 18:57:30,308 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 18:57:30,352 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:57:31,596 | INFO | qtp1605283233-178 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:667ms -24 一月 2026 | 18:57:36,828 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:57:36,922 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101777 -24 一月 2026 | 18:57:37,285 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:634207 -24 一月 2026 | 18:57:37,294 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:57:37,342 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:57:37,375 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true -24 一月 2026 | 18:57:37,385 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:57:38,772 | INFO | qtp1605283233-188 | taurus.web.WebFilter | | action: join_room[{user}:177475] time:1578ms -24 一月 2026 | 18:58:01,198 | ERROR | Thread-159 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:58:16,773 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:58:17,640 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101888 login -24 一月 2026 | 18:58:17,648 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 -24 一月 2026 | 18:58:18,477 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:58:18,570 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101888 -24 一月 2026 | 18:58:18,899 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:634207 -24 一月 2026 | 18:58:18,911 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] -24 一月 2026 | 18:58:18,944 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] -24 一月 2026 | 18:58:18,980 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:58:18,980 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:58:18,980 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 18:58:19,411 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 18:58:19,451 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 18:58:19,462 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 18:58:19,462 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:7026000 -24 一月 2026 | 18:58:19,462 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 18:58:19,462 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 18:58:19,572 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 18:58:19,633 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@59b1a74 -24 一月 2026 | 18:58:19,772 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 18:58:19,806 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:58:19,904 | INFO | qtp1605283233-178 | group.controller.GroupController | | jefe_test: 177475 -24 一月 2026 | 18:58:20,270 | INFO | qtp1605283233-178 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:509ms -24 一月 2026 | 18:58:20,776 | INFO | qtp1605283233-178 | group.controller.GroupController | | jefe_test: 177475 -24 一月 2026 | 18:58:21,038 | INFO | qtp1605283233-178 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:398ms -24 一月 2026 | 18:58:22,184 | INFO | qtp1605283233-178 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:400ms -24 一月 2026 | 18:58:51,302 | ERROR | Thread-164 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 18:59:17,349 | INFO | qtp1605283233-218 | taurus.web.WebFilter | | action: get_my_members[{user}:177475] time:39ms -24 一月 2026 | 18:59:20,781 | INFO | qtp1605283233-178 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:43ms -24 一月 2026 | 18:59:22,665 | INFO | qtp1605283233-218 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:25ms -24 一月 2026 | 18:59:24,130 | INFO | qtp1605283233-178 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:54ms -24 一月 2026 | 18:59:30,235 | INFO | qtp1605283233-218 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:40ms -24 一月 2026 | 18:59:31,831 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 18:59:31,951 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101666 login -24 一月 2026 | 18:59:31,962 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 -24 一月 2026 | 18:59:33,564 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:801562 -24 一月 2026 | 18:59:33,577 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] -24 一月 2026 | 18:59:33,723 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:634207 -24 一月 2026 | 18:59:33,733 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] -24 一月 2026 | 18:59:33,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -24 一月 2026 | 18:59:34,461 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 18:59:34,586 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101666 -24 一月 2026 | 18:59:34,850 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:431875 -24 一月 2026 | 18:59:34,861 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:59:34,913 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 18:59:34,976 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 18:59:34,976 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 18:59:34,976 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 18:59:35,118 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 18:59:35,142 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 18:59:35,157 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 18:59:35,157 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6957000 -24 一月 2026 | 18:59:35,157 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 18:59:35,157 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 18:59:35,211 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 18:59:35,307 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4223d7e8 -24 一月 2026 | 18:59:35,374 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 18:59:35,421 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 18:59:35,446 | INFO | qtp1605283233-178 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:26ms -24 一月 2026 | 18:59:56,718 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 19:00:01,100 | ERROR | Thread-169 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 19:00:21,079 | ERROR | Thread-173 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 19:00:21,963 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 19:00:22,942 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101888 login -24 一月 2026 | 19:00:23,031 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 -24 一月 2026 | 19:00:24,012 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 19:00:24,231 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101888 -24 一月 2026 | 19:00:24,791 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:562807 -24 一月 2026 | 19:00:24,834 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 19:00:24,882 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 19:00:24,906 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 19:00:24,906 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 19:00:24,906 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 19:00:25,007 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 19:00:25,036 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 19:00:25,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 19:00:25,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:7026000 -24 一月 2026 | 19:00:25,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 19:00:25,052 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 19:00:25,101 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 19:00:25,189 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@59b1a74 -24 一月 2026 | 19:00:25,250 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 19:00:25,288 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] -24 一月 2026 | 19:00:59,796 | ERROR | Thread-178 | client.io.ISocket | | Receiving failed.: -taurus.client.io.TSocketException - at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) - at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) - at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) - at java.lang.Thread.run(Thread.java:750) -24 一月 2026 | 19:01:04,653 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} -24 一月 2026 | 19:01:05,035 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:102555 login -24 一月 2026 | 19:01:05,043 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 -24 一月 2026 | 19:01:05,687 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -24 一月 2026 | 19:01:05,817 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:102555 -24 一月 2026 | 19:01:06,068 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:420482 -24 一月 2026 | 19:01:06,075 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 19:01:06,109 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] -24 一月 2026 | 19:01:06,143 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -24 一月 2026 | 19:01:06,143 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -24 一月 2026 | 19:01:06,143 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -24 一月 2026 | 19:01:06,248 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -24 一月 2026 | 19:01:06,274 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -24 一月 2026 | 19:01:06,285 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -24 一月 2026 | 19:01:06,285 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8177000 -24 一月 2026 | 19:01:06,285 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -24 一月 2026 | 19:01:06,285 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -24 一月 2026 | 19:01:06,318 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -24 一月 2026 | 19:01:06,366 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@d2eaada -24 一月 2026 | 19:01:06,420 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null -24 一月 2026 | 19:01:06,446 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +30 一月 2026 | 19:49:01,715 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +30 一月 2026 | 19:49:12,223 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 177475 +30 一月 2026 | 19:49:13,655 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:2002ms +30 一月 2026 | 19:49:29,965 | INFO | qtp809762318-66 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:49:32,065 | INFO | qtp809762318-66 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2800ms +30 一月 2026 | 19:49:37,236 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1715ms +30 一月 2026 | 19:49:49,575 | INFO | qtp809762318-128 | group.service.GroupService | | updatePlay pid:10 gameId:10 name:1元长麻 config:{menqing=true, no_jiang=true, tuoguan_active_time=0, niaofen_score=1, niao_type=0, jiejiegao=true, two_pair=true, isvip=0, native_hu=true, hp_no_limit=0, isNonnegative=1, banyiquan=true, zhuangxian=true, niao=6, game_id=10, yizhihua=true, difen_score=2, AA=0, piao_niao=2, santong=false, maxPlayers=2, zhongtuliuliushun=true, fengding_score=2, four_win=true, piao_niao_opt=2, zimo=false, fengding=false, tuoguan=false, isHidden=0, xi_pai=true, piao2=false, piao1=false, opt=2, queyimen=true, auto_piao=false, an_chou_score=1000, tuoguan_active_timeIndex=1, piao3=false, xi_pai_score=1000, zhongtusixi=true, tuoguan_result_type=0, niaofen_opt=0, kai_gong=1} hpData:{limitloot=0, limitInRoom=5000, xipai_rewards_val=100, type=1, anchou_rewardValueType=1, times=1000, xipai_rewardValueType=1, xipai_rewardType=3, limitPump=4, anchou_rewards_val=100, rewards_val=100, limitPlay=1000, robot_room=2, basePump=0, anchou_rewardType=3, tex_times_room=1000, rewards_type=2, rewards_list=[{UpperLimitReward=0, pumpProportion=2000, UpperLimit=1000}], rewardValueType=1} hpOnOff:1 +30 一月 2026 | 19:49:51,228 | INFO | qtp809762318-128 | taurus.web.WebFilter | | action: update_play[{user}:112233] time:3118ms +30 一月 2026 | 19:49:54,526 | INFO | qtp809762318-130 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:49:55,724 | INFO | qtp809762318-133 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:49:55,890 | INFO | qtp809762318-130 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1844ms +30 一月 2026 | 19:49:56,881 | INFO | qtp809762318-133 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1606ms +30 一月 2026 | 19:50:00,756 | INFO | qtp809762318-133 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1865ms +30 一月 2026 | 19:50:07,229 | WARN | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | robot not enough, cur used robot 181 +30 一月 2026 | 19:50:07,405 | WARN | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | robot not enough, cur used robot 181 +30 一月 2026 | 19:50:09,006 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | del 空 room:740858 player:[] fake_json: +30 一月 2026 | 19:50:11,116 | INFO | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | robot:951647 head:https://thirdwx.qlogo.cn/mmopen/vi_32/ueWNR1W4WibFRLYr7LZt12UWgIQwYhLWnY0rUYTAa8iarJ2sSicazzCicrMwkfWCCibIib2Jq8953oz87AMWpGVdfiaKQ/132 md5:bf7a4cc35df8acf08d3f82a7b7af638d +30 一月 2026 | 19:50:11,117 | INFO | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | robot:105653 head:https://thirdwx.qlogo.cn/mmopen/vi_32/0sG9BukXuLh7UWF5NWJGVXobhzE5nGwkEJia4hEjiasF20ZKrVt0oTwUYlnqdVp5O0BQIYwOcDowmGPk0MAIt9mQ/132 md5:2a52e47451238a1f40be333b410c7e25 +30 一月 2026 | 19:50:11,117 | INFO | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | create robot account:{"acc":"951647","nick":"开心","regTime":9999,"password":"f38640ab8f3af8930cdcb4ba945d3a6e","sex":1,"mng":0,"reg_time":1769773811,"id":951647,"portrait":"https://thirdwx.qlogo.cn/mmopen/vi_32/ueWNR1W4WibFRLYr7LZt12UWgIQwYhLWnY0rUYTAa8iarJ2sSicazzCicrMwkfWCCibIib2Jq8953oz87AMWpGVdfiaKQ/132","diamo":0,"type":0} password:xx123456xx +30 一月 2026 | 19:50:11,117 | INFO | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | create robot account:{"acc":"105653","nick":"君临天下","regTime":9999,"password":"f38640ab8f3af8930cdcb4ba945d3a6e","sex":1,"mng":0,"reg_time":1769773811,"id":105653,"portrait":"https://thirdwx.qlogo.cn/mmopen/vi_32/0sG9BukXuLh7UWF5NWJGVXobhzE5nGwkEJia4hEjiasF20ZKrVt0oTwUYlnqdVp5O0BQIYwOcDowmGPk0MAIt9mQ/132","diamo":0,"type":0} password:xx123456xx +30 一月 2026 | 19:50:11,238 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | +java.sql.SQLException: Field 'jiqiren' doesn't have a default value + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.taurus.core.plugin.database.Db.__executeUpdate(Db.java:255) + at com.taurus.core.plugin.database.Db.insert(Db.java:325) + at com.group.job.UpdatePlayRoomJob.create_register(UpdatePlayRoomJob.java:860) + at com.group.job.UpdatePlayRoomJob.createRobot(UpdatePlayRoomJob.java:672) + at com.group.job.UpdatePlayRoomJob.getRobot(UpdatePlayRoomJob.java:571) + at com.group.job.UpdatePlayRoomJob.updateRedisMap(UpdatePlayRoomJob.java:499) + at com.group.job.UpdatePlayRoomJob.createGroupRoom(UpdatePlayRoomJob.java:460) + at com.group.job.UpdatePlayRoomJob.createPlayRoom(UpdatePlayRoomJob.java:129) + at com.group.job.UpdatePlayRoomJob.execute(UpdatePlayRoomJob.java:555) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +30 一月 2026 | 19:50:11,263 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | +java.sql.SQLException: Field 'jiqiren' doesn't have a default value + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.taurus.core.plugin.database.Db.__executeUpdate(Db.java:255) + at com.taurus.core.plugin.database.Db.insert(Db.java:325) + at com.group.job.UpdatePlayRoomJob.create_register(UpdatePlayRoomJob.java:860) + at com.group.job.UpdatePlayRoomJob.createRobot(UpdatePlayRoomJob.java:672) + at com.group.job.UpdatePlayRoomJob.getRobot(UpdatePlayRoomJob.java:571) + at com.group.job.UpdatePlayRoomJob.updateRedisMap(UpdatePlayRoomJob.java:499) + at com.group.job.UpdatePlayRoomJob.createGroupRoom(UpdatePlayRoomJob.java:460) + at com.group.job.UpdatePlayRoomJob.createPlayRoom(UpdatePlayRoomJob.java:129) + at com.group.job.UpdatePlayRoomJob.execute(UpdatePlayRoomJob.java:555) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +30 一月 2026 | 19:50:11,524 | WARN | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | robot not enough, cur used robot 181 +30 一月 2026 | 19:50:11,571 | WARN | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | robot not enough, cur used robot 181 +30 一月 2026 | 19:50:13,256 | INFO | qtp809762318-131 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:50:14,301 | INFO | qtp809762318-131 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1672ms +30 一月 2026 | 19:50:14,851 | INFO | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | robot:756990 head:https://thirdwx.qlogo.cn/mmopen/vi_32/LRqyhw0JjSaFiadkzHzzlfGYcj3haEOZPmZUbv5PclPUuve67AHoIvCcSUrPbP1iaUA03Siaj6TxK4c8C4oBQ7J3w/132 md5:27ce830500877d253897adf48b2154bf +30 一月 2026 | 19:50:14,851 | INFO | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | create robot account:{"acc":"756990","nick":"淡定","regTime":9999,"password":"f38640ab8f3af8930cdcb4ba945d3a6e","sex":1,"mng":0,"reg_time":1769773814,"id":756990,"portrait":"https://thirdwx.qlogo.cn/mmopen/vi_32/LRqyhw0JjSaFiadkzHzzlfGYcj3haEOZPmZUbv5PclPUuve67AHoIvCcSUrPbP1iaUA03Siaj6TxK4c8C4oBQ7J3w/132","diamo":0,"type":0} password:xx123456xx +30 一月 2026 | 19:50:14,874 | INFO | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | robot:192159 head:https://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83er7cAWwckogf5aLtWeT8KE7QrOH3JgibKSmq3lb9UGkmh66eI0mcFDunoiaWwwicLiaVsa07icKTicbNiawQ/132 md5:caa46e4fef187e03aec4b7126c19dd28 +30 一月 2026 | 19:50:14,874 | INFO | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | create robot account:{"acc":"192159","nick":"木子丽","regTime":9999,"password":"f38640ab8f3af8930cdcb4ba945d3a6e","sex":1,"mng":0,"reg_time":1769773814,"id":192159,"portrait":"https://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83er7cAWwckogf5aLtWeT8KE7QrOH3JgibKSmq3lb9UGkmh66eI0mcFDunoiaWwwicLiaVsa07icKTicbNiawQ/132","diamo":0,"type":0} password:xx123456xx +30 一月 2026 | 19:50:14,940 | ERROR | DefaultQuartzScheduler_Worker-3 | group.job.UpdatePlayRoomJob | | +java.sql.SQLException: Field 'jiqiren' doesn't have a default value + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.taurus.core.plugin.database.Db.__executeUpdate(Db.java:255) + at com.taurus.core.plugin.database.Db.insert(Db.java:325) + at com.group.job.UpdatePlayRoomJob.create_register(UpdatePlayRoomJob.java:860) + at com.group.job.UpdatePlayRoomJob.createRobot(UpdatePlayRoomJob.java:672) + at com.group.job.UpdatePlayRoomJob.getRobot(UpdatePlayRoomJob.java:571) + at com.group.job.UpdatePlayRoomJob.updateRedisMap(UpdatePlayRoomJob.java:499) + at com.group.job.UpdatePlayRoomJob.createGroupRoom(UpdatePlayRoomJob.java:460) + at com.group.job.UpdatePlayRoomJob.createPlayRoom(UpdatePlayRoomJob.java:129) + at com.group.job.UpdatePlayRoomJob.execute(UpdatePlayRoomJob.java:555) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +30 一月 2026 | 19:50:15,014 | ERROR | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | +java.sql.SQLException: Field 'jiqiren' doesn't have a default value + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.taurus.core.plugin.database.Db.__executeUpdate(Db.java:255) + at com.taurus.core.plugin.database.Db.insert(Db.java:325) + at com.group.job.UpdatePlayRoomJob.create_register(UpdatePlayRoomJob.java:860) + at com.group.job.UpdatePlayRoomJob.createRobot(UpdatePlayRoomJob.java:672) + at com.group.job.UpdatePlayRoomJob.getRobot(UpdatePlayRoomJob.java:571) + at com.group.job.UpdatePlayRoomJob.updateRedisMap(UpdatePlayRoomJob.java:499) + at com.group.job.UpdatePlayRoomJob.createGroupRoom(UpdatePlayRoomJob.java:460) + at com.group.job.UpdatePlayRoomJob.createPlayRoom(UpdatePlayRoomJob.java:129) + at com.group.job.UpdatePlayRoomJob.execute(UpdatePlayRoomJob.java:555) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +30 一月 2026 | 19:50:15,588 | INFO | qtp809762318-130 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:1703ms +30 一月 2026 | 19:50:17,071 | ERROR | DefaultQuartzScheduler_Worker-7 | group.job.UpdatePlayRoomJob | | del 空 room:461721 player:[] fake_json: +30 一月 2026 | 19:50:28,309 | INFO | qtp809762318-128 | group.service.GroupService | | updatePlay pid:10 gameId:10 name:1元长麻 config:{menqing=true, no_jiang=true, tuoguan_active_time=0, niaofen_score=1, niao_type=0, jiejiegao=true, two_pair=true, isvip=0, native_hu=true, hp_no_limit=0, isNonnegative=1, banyiquan=true, zhuangxian=true, niao=6, game_id=10, yizhihua=true, difen_score=2, AA=0, piao_niao=2, santong=false, maxPlayers=2, zhongtuliuliushun=true, fengding_score=2, four_win=true, piao_niao_opt=2, zimo=false, fengding=false, tuoguan=false, isHidden=0, xi_pai=true, piao2=false, piao1=false, opt=2, queyimen=true, auto_piao=false, an_chou_score=1000, tuoguan_active_timeIndex=1, piao3=false, xi_pai_score=1000, zhongtusixi=true, tuoguan_result_type=0, niaofen_opt=0, kai_gong=1} hpData:{limitloot=0, limitInRoom=5000, xipai_rewards_val=100, type=1, anchou_rewardValueType=1, times=1000, xipai_rewardValueType=1, xipai_rewardType=3, limitPump=4, anchou_rewards_val=100, rewards_val=100, limitPlay=1000, robot_room=5, basePump=0, anchou_rewardType=3, tex_times_room=1000, rewards_type=2, rewards_list=[{UpperLimitReward=0, pumpProportion=2000, UpperLimit=1000}], rewardValueType=1} hpOnOff:1 +30 一月 2026 | 19:50:29,939 | INFO | qtp809762318-128 | taurus.web.WebFilter | | action: update_play[{user}:112233] time:3552ms +30 一月 2026 | 19:50:32,721 | INFO | qtp809762318-133 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:50:33,665 | INFO | qtp809762318-86 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:50:34,117 | INFO | qtp809762318-133 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2062ms +30 一月 2026 | 19:50:34,782 | INFO | qtp809762318-86 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:1642ms +30 一月 2026 | 19:50:35,020 | INFO | qtp809762318-132 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:50:35,984 | INFO | qtp809762318-132 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1490ms +30 一月 2026 | 19:50:36,565 | INFO | qtp809762318-131 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:50:37,669 | INFO | qtp809762318-131 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:1582ms +30 一月 2026 | 19:50:41,181 | INFO | qtp809762318-131 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:1991ms +30 一月 2026 | 19:50:42,614 | WARN | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | robot not enough, cur used robot 181 +30 一月 2026 | 19:50:44,164 | WARN | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | robot not enough, cur used robot 181 +30 一月 2026 | 19:50:45,828 | INFO | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | robot:984666 head:https://thirdwx.qlogo.cn/mmopen/vi_32/Ze51Hibjz0MrKMtuhMIMSsO6zH5SK1E0xpIhax3A0qEoGmf8o4SdjhjpPpDZzAWzYK2H6DXZ8B9FCjQeDibqia6jg/132 md5:787d66f3fdfa8df70795629c62a3a850 +30 一月 2026 | 19:50:45,926 | INFO | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | robot:984666 head:https://thirdwx.qlogo.cn/mmopen/vi_32/jrp4yVuGdl7KNx0xNkZmqqH7ec0pRiazmuxtzic4q4l64ibnxJ6eLFIbj4nMak5O4o2ibFocgHiaxCHEcCACNic1j1IA/132 md5:7a366ca1033bc189f49e81ccf1348802 +30 一月 2026 | 19:50:45,927 | INFO | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | create robot account:{"acc":"984666","nick":"胖大哥","regTime":9999,"password":"f38640ab8f3af8930cdcb4ba945d3a6e","sex":1,"mng":0,"reg_time":1769773845,"id":984666,"portrait":"https://thirdwx.qlogo.cn/mmopen/vi_32/jrp4yVuGdl7KNx0xNkZmqqH7ec0pRiazmuxtzic4q4l64ibnxJ6eLFIbj4nMak5O4o2ibFocgHiaxCHEcCACNic1j1IA/132","diamo":0,"type":0} password:xx123456xx +30 一月 2026 | 19:50:46,045 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | +java.sql.SQLException: Field 'jiqiren' doesn't have a default value + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.taurus.core.plugin.database.Db.__executeUpdate(Db.java:255) + at com.taurus.core.plugin.database.Db.insert(Db.java:325) + at com.group.job.UpdatePlayRoomJob.create_register(UpdatePlayRoomJob.java:860) + at com.group.job.UpdatePlayRoomJob.createRobot(UpdatePlayRoomJob.java:672) + at com.group.job.UpdatePlayRoomJob.getRobot(UpdatePlayRoomJob.java:571) + at com.group.job.UpdatePlayRoomJob.updateRedisMap(UpdatePlayRoomJob.java:499) + at com.group.job.UpdatePlayRoomJob.createGroupRoom(UpdatePlayRoomJob.java:460) + at com.group.job.UpdatePlayRoomJob.createPlayRoom(UpdatePlayRoomJob.java:129) + at com.group.job.UpdatePlayRoomJob.execute(UpdatePlayRoomJob.java:555) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +30 一月 2026 | 19:50:46,330 | WARN | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | robot not enough, cur used robot 181 +30 一月 2026 | 19:50:46,385 | WARN | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | robot not enough, cur used robot 181 +30 一月 2026 | 19:50:47,581 | INFO | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | robot:101012 head:https://thirdwx.qlogo.cn/mmopen/vi_32/9l2UV7WhTf6pAmqlGqDPsuLG53xFXZY3TUvbqeqr93mCG1kibCVxsfMskFJJaE0RAg8a7Su5HibxE7PicriaG5ibIBw/132 md5:1d291751b9ec0cc7011b29cf638aaaaa +30 一月 2026 | 19:50:47,581 | INFO | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | create robot account:{"acc":"101012","nick":"刘叶娥","regTime":9999,"password":"f38640ab8f3af8930cdcb4ba945d3a6e","sex":1,"mng":0,"reg_time":1769773847,"id":101012,"portrait":"https://thirdwx.qlogo.cn/mmopen/vi_32/9l2UV7WhTf6pAmqlGqDPsuLG53xFXZY3TUvbqeqr93mCG1kibCVxsfMskFJJaE0RAg8a7Su5HibxE7PicriaG5ibIBw/132","diamo":0,"type":0} password:xx123456xx +30 一月 2026 | 19:50:47,663 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | +java.sql.SQLException: Field 'jiqiren' doesn't have a default value + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.taurus.core.plugin.database.Db.__executeUpdate(Db.java:255) + at com.taurus.core.plugin.database.Db.insert(Db.java:325) + at com.group.job.UpdatePlayRoomJob.create_register(UpdatePlayRoomJob.java:860) + at com.group.job.UpdatePlayRoomJob.createRobot(UpdatePlayRoomJob.java:672) + at com.group.job.UpdatePlayRoomJob.getRobot(UpdatePlayRoomJob.java:571) + at com.group.job.UpdatePlayRoomJob.updateRedisMap(UpdatePlayRoomJob.java:499) + at com.group.job.UpdatePlayRoomJob.createGroupRoom(UpdatePlayRoomJob.java:460) + at com.group.job.UpdatePlayRoomJob.createPlayRoom(UpdatePlayRoomJob.java:129) + at com.group.job.UpdatePlayRoomJob.execute(UpdatePlayRoomJob.java:555) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +30 一月 2026 | 19:50:48,005 | WARN | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | robot not enough, cur used robot 181 +30 一月 2026 | 19:50:49,799 | INFO | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | robot:529373 head:https://thirdwx.qlogo.cn/mmopen/vi_32/53Z7ZntS8o8s9UUsGgtbibN6HHPJkjbzsYdncrHrXsibuqTsuNF3rcatWvgHhLHx9mqI1QHkicHveatJvFtSRF48Q/132 md5:0a1c1d56dbe8989b6245409e85d4772a +30 一月 2026 | 19:50:49,800 | INFO | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | create robot account:{"acc":"529373","nick":"娅","regTime":9999,"password":"f38640ab8f3af8930cdcb4ba945d3a6e","sex":1,"mng":0,"reg_time":1769773849,"id":529373,"portrait":"https://thirdwx.qlogo.cn/mmopen/vi_32/53Z7ZntS8o8s9UUsGgtbibN6HHPJkjbzsYdncrHrXsibuqTsuNF3rcatWvgHhLHx9mqI1QHkicHveatJvFtSRF48Q/132","diamo":0,"type":0} password:xx123456xx +30 一月 2026 | 19:50:49,906 | ERROR | DefaultQuartzScheduler_Worker-8 | group.job.UpdatePlayRoomJob | | +java.sql.SQLException: Field 'jiqiren' doesn't have a default value + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.taurus.core.plugin.database.Db.__executeUpdate(Db.java:255) + at com.taurus.core.plugin.database.Db.insert(Db.java:325) + at com.group.job.UpdatePlayRoomJob.create_register(UpdatePlayRoomJob.java:860) + at com.group.job.UpdatePlayRoomJob.createRobot(UpdatePlayRoomJob.java:672) + at com.group.job.UpdatePlayRoomJob.getRobot(UpdatePlayRoomJob.java:571) + at com.group.job.UpdatePlayRoomJob.updateRedisMap(UpdatePlayRoomJob.java:499) + at com.group.job.UpdatePlayRoomJob.createGroupRoom(UpdatePlayRoomJob.java:460) + at com.group.job.UpdatePlayRoomJob.createPlayRoom(UpdatePlayRoomJob.java:129) + at com.group.job.UpdatePlayRoomJob.execute(UpdatePlayRoomJob.java:555) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +30 一月 2026 | 19:50:49,938 | INFO | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | robot:319718 head:https://thirdwx.qlogo.cn/mmopen/vi_32/Grv8dSOhHgib1RozSKEcDOjebGibiaR46U9I9ph3G0zb7T4khMib1OTKCCjicosltTDBxSL8ibfaGMTvyPfbE3hq3U3Q/132 md5:787d66f3fdfa8df70795629c62a3a850 +30 一月 2026 | 19:50:50,143 | INFO | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | robot:319718 head:https://thirdwx.qlogo.cn/mmopen/vi_32/V0wXWAkA83vJUZg0Xgg6YJkw9DnJOReniaRWiaNrumSu3atFibR3RdKKRrTomlZXib1EpuXIt7jZhu7olcKSD8hrIA/132 md5:ef62c9492d6a64829cd2ea481ad09281 +30 一月 2026 | 19:50:50,144 | INFO | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | create robot account:{"acc":"319718","nick":" 冰 ","regTime":9999,"password":"f38640ab8f3af8930cdcb4ba945d3a6e","sex":1,"mng":0,"reg_time":1769773850,"id":319718,"portrait":"https://thirdwx.qlogo.cn/mmopen/vi_32/V0wXWAkA83vJUZg0Xgg6YJkw9DnJOReniaRWiaNrumSu3atFibR3RdKKRrTomlZXib1EpuXIt7jZhu7olcKSD8hrIA/132","diamo":0,"type":0} password:xx123456xx +30 一月 2026 | 19:50:50,435 | ERROR | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | +java.sql.SQLException: Field 'jiqiren' doesn't have a default value + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.taurus.core.plugin.database.Db.__executeUpdate(Db.java:255) + at com.taurus.core.plugin.database.Db.insert(Db.java:325) + at com.group.job.UpdatePlayRoomJob.create_register(UpdatePlayRoomJob.java:860) + at com.group.job.UpdatePlayRoomJob.createRobot(UpdatePlayRoomJob.java:672) + at com.group.job.UpdatePlayRoomJob.getRobot(UpdatePlayRoomJob.java:571) + at com.group.job.UpdatePlayRoomJob.updateRedisMap(UpdatePlayRoomJob.java:499) + at com.group.job.UpdatePlayRoomJob.createGroupRoom(UpdatePlayRoomJob.java:460) + at com.group.job.UpdatePlayRoomJob.createPlayRoom(UpdatePlayRoomJob.java:129) + at com.group.job.UpdatePlayRoomJob.execute(UpdatePlayRoomJob.java:555) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +30 一月 2026 | 19:50:50,772 | WARN | DefaultQuartzScheduler_Worker-6 | group.job.UpdatePlayRoomJob | | robot not enough, cur used robot 181 +30 一月 2026 | 19:50:51,794 | INFO | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | robot:350477 head:https://thirdwx.qlogo.cn/mmopen/vi_32/EVtTF7hpVeVD1JaGqYM65pGgEia6bhTgMeDicfmeUKCE3Msy6MGIjrlph10ngFmib6Sp8qQGRcNtP6z1nA83uHYCA/132 md5:dbc6205fc68095b5c9c6f1e2ea4f46cc +30 一月 2026 | 19:50:51,794 | INFO | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | create robot account:{"acc":"350477","nick":"贺奕韵","regTime":9999,"password":"f38640ab8f3af8930cdcb4ba945d3a6e","sex":1,"mng":0,"reg_time":1769773851,"id":350477,"portrait":"https://thirdwx.qlogo.cn/mmopen/vi_32/EVtTF7hpVeVD1JaGqYM65pGgEia6bhTgMeDicfmeUKCE3Msy6MGIjrlph10ngFmib6Sp8qQGRcNtP6z1nA83uHYCA/132","diamo":0,"type":0} password:xx123456xx +30 一月 2026 | 19:50:51,897 | ERROR | DefaultQuartzScheduler_Worker-10 | group.job.UpdatePlayRoomJob | | +java.sql.SQLException: Field 'jiqiren' doesn't have a default value + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.taurus.core.plugin.database.Db.__executeUpdate(Db.java:255) + at com.taurus.core.plugin.database.Db.insert(Db.java:325) + at com.group.job.UpdatePlayRoomJob.create_register(UpdatePlayRoomJob.java:860) + at com.group.job.UpdatePlayRoomJob.createRobot(UpdatePlayRoomJob.java:672) + at com.group.job.UpdatePlayRoomJob.getRobot(UpdatePlayRoomJob.java:571) + at com.group.job.UpdatePlayRoomJob.updateRedisMap(UpdatePlayRoomJob.java:499) + at com.group.job.UpdatePlayRoomJob.createGroupRoom(UpdatePlayRoomJob.java:460) + at com.group.job.UpdatePlayRoomJob.createPlayRoom(UpdatePlayRoomJob.java:129) + at com.group.job.UpdatePlayRoomJob.execute(UpdatePlayRoomJob.java:555) + at org.quartz.core.JobRunShell.run(JobRunShell.java:202) + at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573) +30 一月 2026 | 19:51:00,695 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 19:51:00,779 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 19:51:08,788 | INFO | qtp809762318-69 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:2203ms +30 一月 2026 | 19:52:28,741 | INFO | qtp809762318-65 | group.controller.GroupController | | jefe_test: 115777 +30 一月 2026 | 19:52:30,219 | INFO | qtp809762318-65 | taurus.web.WebFilter | | action: get_groups[{user}:115777] time:2098ms +30 一月 2026 | 19:52:33,291 | INFO | qtp809762318-67 | taurus.web.WebFilter | | action: enter_group[{user}:115777] time:2126ms +30 一月 2026 | 19:52:48,993 | INFO | qtp809762318-68 | group.controller.GroupController | | jefe_test: 112233 +30 一月 2026 | 19:52:50,721 | INFO | qtp809762318-68 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:2354ms +30 一月 2026 | 19:53:01,877 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +30 一月 2026 | 19:53:01,948 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +30 一月 2026 | 19:53:05,429 | INFO | qtp809762318-63 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:2215ms +30 一月 2026 | 19:53:08,701 | ERROR | DefaultQuartzScheduler_Worker-2 | group.job.UpdatePlayRoomJob | | del robot room:945416 player:[0,0] fake_json:1 +30 一月 2026 | 19:53:13,090 | WARN | DefaultQuartzScheduler_Worker-4 | group.job.UpdatePlayRoomJob | | robot not enough, cur used robot 181 diff --git a/game_web/web_group/src/main/webapp/logs/web_main.log.2026-01-24 b/game_web/web_group/src/main/webapp/logs/web_main.log.2026-01-24 new file mode 100644 index 0000000..d77cc18 --- /dev/null +++ b/game_web/web_group/src/main/webapp/logs/web_main.log.2026-01-24 @@ -0,0 +1,1682 @@ +24 一月 2026 | 18:14:17,001 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +24 一月 2026 | 18:14:17,049 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +24 一月 2026 | 18:14:18,098 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:14:20,752 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +java.net.ConnectException: Connection refused: connect + at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) + at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) + at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:476) + at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:218) + at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:200) + at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:162) + at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:394) + at java.net.Socket.connect(Socket.java:606) + at taurus.client.io.SocketTcp.connectThread(SocketTcp.java:54) + at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) + at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:14:20,766 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +24 一月 2026 | 18:14:43,201 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:14:45,912 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +java.net.ConnectException: Connection refused: connect + at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) + at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) + at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:476) + at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:218) + at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:200) + at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:162) + at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:394) + at java.net.Socket.connect(Socket.java:606) + at taurus.client.io.SocketTcp.connectThread(SocketTcp.java:54) + at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) + at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:14:45,928 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +24 一月 2026 | 18:15:07,977 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:15:10,466 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +java.net.ConnectException: Connection refused: connect + at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) + at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) + at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:476) + at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:218) + at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:200) + at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:162) + at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:394) + at java.net.Socket.connect(Socket.java:606) + at taurus.client.io.SocketTcp.connectThread(SocketTcp.java:54) + at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) + at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:15:10,482 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +24 一月 2026 | 18:15:32,972 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:15:35,413 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +java.net.ConnectException: Connection refused: connect + at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) + at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) + at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:476) + at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:218) + at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:200) + at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:162) + at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:394) + at java.net.Socket.connect(Socket.java:606) + at taurus.client.io.SocketTcp.connectThread(SocketTcp.java:54) + at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) + at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:15:35,429 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +24 一月 2026 | 18:15:57,875 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:16:00,417 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +java.net.ConnectException: Connection refused: connect + at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) + at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) + at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:476) + at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:218) + at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:200) + at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:162) + at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:394) + at java.net.Socket.connect(Socket.java:606) + at taurus.client.io.SocketTcp.connectThread(SocketTcp.java:54) + at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) + at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:16:00,431 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +24 一月 2026 | 18:16:23,002 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:16:25,467 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +java.net.ConnectException: Connection refused: connect + at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) + at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) + at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:476) + at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:218) + at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:200) + at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:162) + at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:394) + at java.net.Socket.connect(Socket.java:606) + at taurus.client.io.SocketTcp.connectThread(SocketTcp.java:54) + at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) + at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:16:25,470 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +24 一月 2026 | 18:16:32,954 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +24 一月 2026 | 18:16:33,005 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +24 一月 2026 | 18:16:34,448 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:16:37,084 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +java.net.ConnectException: Connection refused: connect + at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) + at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) + at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:476) + at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:218) + at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:200) + at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:162) + at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:394) + at java.net.Socket.connect(Socket.java:606) + at taurus.client.io.SocketTcp.connectThread(SocketTcp.java:54) + at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) + at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:16:37,088 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +24 一月 2026 | 18:16:58,964 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:17:01,465 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +java.net.ConnectException: Connection refused: connect + at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) + at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) + at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:476) + at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:218) + at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:200) + at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:162) + at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:394) + at java.net.Socket.connect(Socket.java:606) + at taurus.client.io.SocketTcp.connectThread(SocketTcp.java:54) + at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) + at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:17:01,467 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +24 一月 2026 | 18:17:24,188 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:17:26,623 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +java.net.ConnectException: Connection refused: connect + at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) + at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) + at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:476) + at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:218) + at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:200) + at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:162) + at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:394) + at java.net.Socket.connect(Socket.java:606) + at taurus.client.io.SocketTcp.connectThread(SocketTcp.java:54) + at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) + at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:17:26,639 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +24 一月 2026 | 18:17:35,421 | INFO | qtp1605283233-66 | group.controller.GroupController | | jefe_test: 112233 +24 一月 2026 | 18:17:35,757 | INFO | qtp1605283233-66 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:489ms +24 一月 2026 | 18:17:37,019 | INFO | qtp1605283233-63 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:430ms +24 一月 2026 | 18:17:41,923 | INFO | qtp1605283233-67 | taurus.web.WebFilter | | action: del__room[{user}:112233] time:475ms +24 一月 2026 | 18:17:45,984 | INFO | qtp1605283233-65 | group.controller.GroupController | | jefe_test: 112233 +24 一月 2026 | 18:17:46,318 | INFO | qtp1605283233-65 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:470ms +24 一月 2026 | 18:17:46,829 | INFO | qtp1605283233-77 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:559ms +24 一月 2026 | 18:17:48,901 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:17:51,488 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +java.net.ConnectException: Connection refused: connect + at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) + at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) + at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:476) + at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:218) + at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:200) + at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:162) + at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:394) + at java.net.Socket.connect(Socket.java:606) + at taurus.client.io.SocketTcp.connectThread(SocketTcp.java:54) + at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) + at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:17:51,489 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +24 一月 2026 | 18:17:58,928 | INFO | qtp1605283233-65 | taurus.web.WebFilter | | action: del__room[{user}:112233] time:352ms +24 一月 2026 | 18:18:01,170 | INFO | qtp1605283233-64 | group.controller.GroupController | | jefe_test: 112233 +24 一月 2026 | 18:18:01,530 | INFO | qtp1605283233-64 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:559ms +24 一月 2026 | 18:18:02,306 | INFO | qtp1605283233-63 | group.controller.GroupController | | jefe_test: 112233 +24 一月 2026 | 18:18:02,583 | INFO | qtp1605283233-63 | taurus.web.WebFilter | | action: get_groups[{user}:112233] time:418ms +24 一月 2026 | 18:18:03,520 | INFO | qtp1605283233-65 | taurus.web.WebFilter | | action: enter_group[{user}:112233] time:440ms +24 一月 2026 | 18:18:07,041 | INFO | qtp1605283233-63 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 +24 一月 2026 | 18:18:07,510 | ERROR | qtp1605283233-63 | group.service.GroupRoomService | | createGroupRoom gameId:10 svr:null +24 一月 2026 | 18:18:07,522 | INFO | qtp1605283233-63 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:759ms +24 一月 2026 | 18:18:13,817 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:18:16,235 | ERROR | mpnet connect thread | client.io.ISocket | | Connection error +java.net.ConnectException: Connection refused: connect + at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) + at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81) + at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:476) + at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:218) + at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:200) + at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:162) + at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:394) + at java.net.Socket.connect(Socket.java:606) + at taurus.client.io.SocketTcp.connectThread(SocketTcp.java:54) + at taurus.client.io.SocketTcp.access$000(SocketTcp.java:20) + at taurus.client.io.SocketTcp$1.run(SocketTcp.java:40) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:18:16,237 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnConnect +24 一月 2026 | 18:18:25,783 | INFO | qtp1605283233-67 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 +24 一月 2026 | 18:18:27,600 | INFO | qtp1605283233-67 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:2134ms +24 一月 2026 | 18:18:39,335 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:18:39,874 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:18:40,402 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101666 login +24 一月 2026 | 18:18:40,453 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 +24 一月 2026 | 18:18:41,510 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:18:41,646 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101666 +24 一月 2026 | 18:18:41,924 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:648053 +24 一月 2026 | 18:18:41,934 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] +24 一月 2026 | 18:18:42,063 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] +24 一月 2026 | 18:18:42,086 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:18:42,086 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:18:42,086 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 18:18:42,239 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 18:18:42,268 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 18:18:42,279 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 18:18:42,279 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6958000 +24 一月 2026 | 18:18:42,279 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 18:18:42,279 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 18:18:42,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 18:18:42,500 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2d4886c1 +24 一月 2026 | 18:18:42,555 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 18:18:42,586 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:19:04,085 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:19:04,818 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:19:28,771 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:19:29,480 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:19:29,902 | ERROR | Thread-51 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:19:29,904 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +24 一月 2026 | 18:19:31,586 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +24 一月 2026 | 18:19:31,634 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +24 一月 2026 | 18:19:32,603 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:19:33,228 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:19:50,014 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:19:50,030 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +24 一月 2026 | 18:19:57,415 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:19:58,453 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:648053 +24 一月 2026 | 18:19:58,463 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] +24 一月 2026 | 18:19:58,731 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +24 一月 2026 | 18:19:59,284 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:19:59,477 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:19:59,547 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 +24 一月 2026 | 18:19:59,803 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:891049 +24 一月 2026 | 18:19:59,810 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:19:59,881 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:19:59,919 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:19:59,919 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:19:59,919 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 18:20:00,042 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 18:20:00,069 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 18:20:00,080 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 18:20:00,080 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:16210000 +24 一月 2026 | 18:20:00,081 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 18:20:00,081 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 18:20:00,170 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 18:20:00,216 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@256fe7f8 +24 一月 2026 | 18:20:00,291 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 18:20:00,324 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:20:04,658 | INFO | qtp1605283233-68 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 +24 一月 2026 | 18:20:05,527 | INFO | qtp1605283233-68 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:1157ms +24 一月 2026 | 18:20:10,970 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[202, 107, 205, 208, 209, 107, 204, 208, 207, 207, 102, 109, 105, 203] +24 一月 2026 | 18:20:10,970 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:20:10,970 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:20:10,970 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:20:10,970 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +24 一月 2026 | 18:21:47,731 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:127) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:21:47,733 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnReceive +24 一月 2026 | 18:22:14,869 | INFO | qtp1605283233-67 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 +24 一月 2026 | 18:22:16,476 | INFO | qtp1605283233-67 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:1863ms +24 一月 2026 | 18:22:27,495 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:22:28,000 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:22:28,528 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101777 login +24 一月 2026 | 18:22:28,568 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 +24 一月 2026 | 18:22:29,476 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:22:29,592 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101777 +24 一月 2026 | 18:22:29,908 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:966473 +24 一月 2026 | 18:22:29,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] +24 一月 2026 | 18:22:29,953 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] +24 一月 2026 | 18:22:29,984 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:22:29,984 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:22:29,984 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 18:22:30,077 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 18:22:30,113 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 18:22:30,121 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 18:22:30,121 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:7898000 +24 一月 2026 | 18:22:30,121 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 18:22:30,121 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 18:22:30,170 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 18:22:30,221 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@207eecfe +24 一月 2026 | 18:22:30,300 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 18:22:30,339 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:22:48,094 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 204, 203, 203, 108, 201, 207, 209, 107, 101, 101, 109, 109, 205] +24 一月 2026 | 18:22:48,094 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:22:48,095 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:22:48,095 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:22:48,095 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209] +24 一月 2026 | 18:22:52,531 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:22:53,017 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101888 login +24 一月 2026 | 18:22:53,042 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 +24 一月 2026 | 18:22:54,465 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:966473 +24 一月 2026 | 18:22:54,484 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [112233,101777]] +24 一月 2026 | 18:22:54,523 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [112233,101777]] +24 一月 2026 | 18:22:54,559 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:22:54,559 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:22:54,560 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom enter group fail, room full:g{330800}:m101888 room_key:room:966473 +24 一月 2026 | 18:22:54,783 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +24 一月 2026 | 18:22:55,054 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[203, 201], weight=1, id=1, type=1, card=202}, {opcard=[203, 204], weight=1, id=2, type=1, card=202}] +24 一月 2026 | 18:22:55,133 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 203, 203, 108, 207, 209, 107, 101, 109, 109, 205] +24 一月 2026 | 18:22:55,133 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:22:55,133 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[202, 203, 201] +24 一月 2026 | 18:22:55,133 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:22:55,133 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 209, 202] +24 一月 2026 | 18:22:55,208 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:22:55,348 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:22:55,433 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101888 +24 一月 2026 | 18:22:55,729 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:259408 +24 一月 2026 | 18:22:55,752 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:22:55,812 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:22:55,834 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:22:55,834 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:22:55,834 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 18:22:55,910 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 18:22:55,957 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 18:22:55,971 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 18:22:55,971 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6946000 +24 一月 2026 | 18:22:55,971 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 18:22:55,971 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 18:22:56,041 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 18:22:56,126 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@597bd52d +24 一月 2026 | 18:22:56,198 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 18:22:56,224 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:23:00,362 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 203, 203, 108, 207, 209, 107, 109, 109, 205, 103] +24 一月 2026 | 18:23:00,362 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:23:00,362 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[202, 203, 201] +24 一月 2026 | 18:23:00,362 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:23:00,362 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 209, 104, 203, 201] +24 一月 2026 | 18:23:04,990 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[205, 203], weight=1, id=1, type=1, card=204}] +24 一月 2026 | 18:23:05,051 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 203, 203, 108, 207, 209, 107, 109, 109, 205, 107] +24 一月 2026 | 18:23:05,051 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:23:05,051 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[202, 203, 201] +24 一月 2026 | 18:23:05,051 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:23:05,051 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 103, 209, 104, 204, 203, 201] +24 一月 2026 | 18:23:06,756 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[108, 107], weight=1, id=1, type=1, card=109}] +24 一月 2026 | 18:23:06,835 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 203, 203, 108, 207, 209, 107, 109, 205, 107, 208] +24 一月 2026 | 18:23:06,835 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:23:06,835 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[202, 203, 201] +24 一月 2026 | 18:23:06,835 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:23:06,835 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 103, 109, 209, 104, 204, 109, 203, 201] +24 一月 2026 | 18:23:12,618 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 203, 203, 108, 207, 209, 109, 205, 107, 208, 207] +24 一月 2026 | 18:23:12,618 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:23:12,618 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[202, 203, 201] +24 一月 2026 | 18:23:12,618 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:23:12,618 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 103, 109, 209, 104, 204, 109, 102, 203, 201, 107, 107, 107] +24 一月 2026 | 18:23:14,224 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[108, 107], weight=1, id=1, type=1, card=109}] +24 一月 2026 | 18:23:14,287 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 203, 108, 207, 209, 109, 205, 107, 208, 207, 203] +24 一月 2026 | 18:23:14,287 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:23:14,287 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[202, 203, 201] +24 一月 2026 | 18:23:14,287 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:23:14,287 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 103, 109, 203, 209, 104, 204, 109, 102, 109, 203, 201, 107, 107, 107] +24 一月 2026 | 18:23:16,637 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208, 207], weight=1, id=1, type=1, card=209}] +24 一月 2026 | 18:23:16,700 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 108, 207, 209, 109, 205, 107, 208, 207, 203, 104] +24 一月 2026 | 18:23:16,700 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:23:16,700 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[202, 203, 201] +24 一月 2026 | 18:23:16,700 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:23:16,700 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 103, 109, 203, 203, 209, 104, 204, 109, 102, 109, 209, 203, 201, 107, 107, 107] +24 一月 2026 | 18:23:39,351 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 108, 207, 209, 109, 205, 107, 208, 207, 203, 106] +24 一月 2026 | 18:23:39,351 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:23:39,351 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[202, 203, 201] +24 一月 2026 | 18:23:39,351 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:23:39,351 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 103, 109, 203, 203, 104, 209, 104, 204, 109, 102, 109, 209, 104, 203, 201, 107, 107, 107] +24 一月 2026 | 18:23:41,305 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 108, 207, 209, 205, 107, 208, 207, 203, 106, 107] +24 一月 2026 | 18:23:41,305 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:23:41,305 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[202, 203, 201] +24 一月 2026 | 18:23:41,305 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:23:41,305 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 103, 109, 203, 203, 104, 109, 209, 104, 204, 109, 102, 109, 209, 104, 104, 203, 201, 107, 107, 107] +24 一月 2026 | 18:23:42,947 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[209, 208], weight=1, id=1, type=1, card=210}] +24 一月 2026 | 18:23:43,010 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 108, 207, 209, 205, 208, 207, 203, 106, 107, 105] +24 一月 2026 | 18:23:43,010 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:23:43,010 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[202, 203, 201] +24 一月 2026 | 18:23:43,010 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:23:43,010 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 103, 109, 203, 203, 104, 109, 107, 209, 104, 204, 109, 102, 109, 209, 104, 104, 210, 203, 201, 107, 107, 107] +24 一月 2026 | 18:23:45,980 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[106, 107], weight=1, id=1, type=1, card=105}, {opcard=[105], weight=5, id=2, type=6, card=105}] +24 一月 2026 | 18:23:56,165 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 204, 203, 203, 108, 201, 207, 209, 107, 101, 101, 109, 109, 206] +24 一月 2026 | 18:23:56,165 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:23:56,165 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:23:56,165 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:23:56,165 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 103, 109, 203, 203, 104, 109, 107, 209, 104, 204, 109, 102, 109, 209, 104, 104, 210, 105, 203, 201, 207, 207, 107, 107, 107] +24 一月 2026 | 18:23:59,743 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[204, 203], weight=1, id=1, type=1, card=205}, {opcard=[206, 204], weight=1, id=2, type=1, card=205}, {opcard=[206, 207], weight=1, id=3, type=1, card=205}] +24 一月 2026 | 18:23:59,826 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 203, 203, 108, 201, 207, 209, 107, 101, 109, 109] +24 一月 2026 | 18:23:59,826 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:23:59,826 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[205, 206, 204] +24 一月 2026 | 18:23:59,826 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:23:59,826 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 205] +24 一月 2026 | 18:24:07,403 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:24:08,112 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:24:29,855 | ERROR | Thread-50 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:24:29,870 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +24 一月 2026 | 18:24:32,485 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:24:33,424 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:24:38,836 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[108, 107], weight=1, id=1, type=1, card=109}, {opcard=[109], weight=2, id=2, type=2, card=109}] +24 一月 2026 | 18:24:38,917 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 203, 203, 108, 201, 207, 209, 107] +24 一月 2026 | 18:24:38,917 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[109, 109, 109] +24 一月 2026 | 18:24:38,917 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[205, 206, 204] +24 一月 2026 | 18:24:38,917 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:24:38,917 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 109, 206, 204] +24 一月 2026 | 18:24:45,988 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 203, 203, 108, 207, 209, 107, 103] +24 一月 2026 | 18:24:45,988 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[109, 109, 109] +24 一月 2026 | 18:24:45,988 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[205, 206, 204] +24 一月 2026 | 18:24:45,988 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:24:45,988 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 201, 202, 206, 204, 109, 109] +24 一月 2026 | 18:24:49,956 | ERROR | Thread-54 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:24:49,970 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +24 一月 2026 | 18:24:50,594 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 203, 203, 108, 207, 209, 107, 107] +24 一月 2026 | 18:24:50,594 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[109, 109, 109] +24 一月 2026 | 18:24:50,594 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[205, 206, 204] +24 一月 2026 | 18:24:50,594 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:24:50,594 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 201, 202, 107, 206, 204, 104, 102, 109, 109] +24 一月 2026 | 18:24:51,945 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 203, 203, 108, 207, 209, 107, 205] +24 一月 2026 | 18:24:51,945 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[109, 109, 109] +24 一月 2026 | 18:24:51,945 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[205, 206, 204] +24 一月 2026 | 18:24:51,945 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:24:51,945 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 201, 107, 202, 107, 107, 206, 204, 104, 102, 109, 109] +24 一月 2026 | 18:24:57,493 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:24:58,344 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:25:00,599 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 203, 203, 108, 207, 107, 205, 209] +24 一月 2026 | 18:25:00,599 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[109, 109, 109] +24 一月 2026 | 18:25:00,599 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[205, 206, 204] +24 一月 2026 | 18:25:00,599 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:25:00,599 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 201, 107, 209, 202, 107, 107, 107, 206, 204, 104, 102, 109, 109] +24 一月 2026 | 18:25:06,366 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[109], weight=3, id=1, type=5, card=109}] +24 一月 2026 | 18:25:06,522 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[203], weight=3, id=1, type=4, card=203}] +24 一月 2026 | 18:25:06,601 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 207, 107, 205, 208] +24 一月 2026 | 18:25:06,601 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[109, 109, 109] +24 一月 2026 | 18:25:06,601 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[205, 206, 204] +24 一月 2026 | 18:25:06,601 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[109, 109, 109, 109, 203, 203, 203, 203] +24 一月 2026 | 18:25:06,601 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 201, 107, 209, 209, 202, 107, 107, 107, 209, 206, 204, 104, 102, 109, 109] +24 一月 2026 | 18:25:15,066 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 207, 107, 208, 210] +24 一月 2026 | 18:25:15,066 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[109, 109, 109] +24 一月 2026 | 18:25:15,066 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[205, 206, 204] +24 一月 2026 | 18:25:15,066 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[109, 109, 109, 109, 203, 203, 203, 203] +24 一月 2026 | 18:25:15,066 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 201, 107, 209, 209, 205, 202, 107, 107, 107, 209, 104, 206, 204, 104, 102, 109, 109, 109, 203, 203, 203, 203] +24 一月 2026 | 18:25:19,980 | ERROR | Thread-59 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:25:22,948 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:25:39,948 | ERROR | Thread-63 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:25:47,488 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:26:09,832 | ERROR | Thread-68 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:26:12,468 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:26:16,182 | ERROR | Thread-45 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:127) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:26:16,182 | ERROR | Thread-41 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:127) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:26:16,182 | ERROR | Thread-72 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:127) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:26:34,466 | INFO | qtp1605283233-89 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 +24 一月 2026 | 18:26:36,817 | INFO | qtp1605283233-89 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:2629ms +24 一月 2026 | 18:26:37,481 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:26:38,448 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:26:38,643 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101888 +24 一月 2026 | 18:26:39,083 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:972340 +24 一月 2026 | 18:26:39,089 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] +24 一月 2026 | 18:26:39,158 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] +24 一月 2026 | 18:26:39,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:26:39,185 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:26:39,185 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 18:26:39,323 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 18:26:39,364 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 18:26:39,372 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 18:26:39,373 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6946000 +24 一月 2026 | 18:26:39,373 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 18:26:39,373 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 18:26:39,415 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 18:26:39,487 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@597bd52d +24 一月 2026 | 18:26:39,568 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 18:26:39,594 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:27:02,782 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:27:03,085 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:102111 login +24 一月 2026 | 18:27:03,098 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 +24 一月 2026 | 18:27:04,325 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:972340 +24 一月 2026 | 18:27:04,336 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [112233,101888]] +24 一月 2026 | 18:27:04,367 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [112233,101888]] +24 一月 2026 | 18:27:04,393 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:27:04,393 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:27:04,393 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom enter group fail, room full:g{330800}:m102111 room_key:room:972340 +24 一月 2026 | 18:27:04,557 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +24 一月 2026 | 18:27:05,028 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:27:05,220 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:102111 +24 一月 2026 | 18:27:05,555 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:199079 +24 一月 2026 | 18:27:05,565 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:27:05,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:27:05,667 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:27:05,667 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:27:05,667 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 18:27:05,760 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 18:27:05,793 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 18:27:05,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 18:27:05,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:7119000 +24 一月 2026 | 18:27:05,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 18:27:05,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 18:27:05,841 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 18:27:05,901 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@86d0134 +24 一月 2026 | 18:27:05,975 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 18:27:06,002 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:27:07,202 | ERROR | Thread-77 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:27:19,440 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +24 一月 2026 | 18:27:19,492 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +24 一月 2026 | 18:27:42,374 | INFO | qtp1605283233-69 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 +24 一月 2026 | 18:27:44,627 | INFO | qtp1605283233-69 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:2597ms +24 一月 2026 | 18:28:10,219 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:28:10,660 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:28:11,278 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:28:11,470 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 +24 一月 2026 | 18:28:11,913 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:254211 +24 一月 2026 | 18:28:11,922 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] +24 一月 2026 | 18:28:11,969 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] +24 一月 2026 | 18:28:12,007 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:28:12,007 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:28:12,007 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 18:28:12,158 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 18:28:12,189 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 18:28:12,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 18:28:12,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:16209000 +24 一月 2026 | 18:28:12,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 18:28:12,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 18:28:12,252 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 18:28:12,310 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2a494e40 +24 一月 2026 | 18:28:12,363 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 18:28:12,386 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:28:21,967 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 204, 203, 203, 108, 201, 207, 209, 107, 101, 101, 109, 109, 206] +24 一月 2026 | 18:28:21,967 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:28:21,967 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:28:21,967 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:28:21,967 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +24 一月 2026 | 18:28:25,120 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[204, 203], weight=1, id=1, type=1, card=205}, {opcard=[206, 204], weight=1, id=2, type=1, card=205}, {opcard=[206, 207], weight=1, id=3, type=1, card=205}] +24 一月 2026 | 18:28:25,243 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 203, 203, 108, 201, 207, 209, 107, 101, 109, 109] +24 一月 2026 | 18:28:25,243 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:28:25,243 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[205, 206, 204] +24 一月 2026 | 18:28:25,243 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:28:25,243 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 205] +24 一月 2026 | 18:28:31,162 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[108, 107], weight=1, id=1, type=1, card=109}, {opcard=[109], weight=2, id=2, type=2, card=109}] +24 一月 2026 | 18:28:31,270 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 203, 203, 108, 201, 207, 209, 107] +24 一月 2026 | 18:28:31,270 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[109, 109, 109] +24 一月 2026 | 18:28:31,270 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[205, 206, 204] +24 一月 2026 | 18:28:31,270 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:28:31,270 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 109, 206, 204] +24 一月 2026 | 18:28:35,484 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:28:36,451 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:254211 +24 一月 2026 | 18:28:36,458 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [112233,101555]] +24 一月 2026 | 18:28:36,521 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [112233,101555]] +24 一月 2026 | 18:28:36,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:28:36,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:28:36,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom enter group fail, room full:g{330800}:m101666 room_key:room:254211 +24 一月 2026 | 18:28:36,717 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +24 一月 2026 | 18:28:37,131 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:28:37,267 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:28:37,361 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101666 +24 一月 2026 | 18:28:37,631 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:317807 +24 一月 2026 | 18:28:37,641 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:28:37,694 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:28:37,742 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:28:37,743 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:28:37,743 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 18:28:37,921 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 18:28:37,958 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 18:28:37,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 18:28:37,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6957000 +24 一月 2026 | 18:28:37,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 18:28:37,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 18:28:38,024 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 18:28:38,126 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4835ef63 +24 一月 2026 | 18:28:38,184 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 18:28:38,229 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:29:00,621 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:29:01,209 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:29:25,434 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:29:26,176 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:29:27,138 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:29:27,152 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +24 一月 2026 | 18:29:47,010 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:29:47,024 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +24 一月 2026 | 18:29:50,387 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:29:51,032 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:30:07,152 | ERROR | Thread-49 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:30:07,168 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +24 一月 2026 | 18:30:15,248 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:30:15,904 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:30:19,496 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:127) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:30:19,496 | ERROR | Thread-53 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:127) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:30:19,496 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:127) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:30:19,498 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnReceive +24 一月 2026 | 18:30:19,499 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnReceive +24 一月 2026 | 18:30:19,499 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnReceive +24 一月 2026 | 18:30:40,347 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:30:41,075 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:31:01,640 | ERROR | Thread-58 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:31:01,656 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +24 一月 2026 | 18:31:05,465 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:31:06,102 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:31:30,340 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:31:30,977 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:31:31,706 | ERROR | Thread-63 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:31:31,722 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +24 一月 2026 | 18:31:51,557 | ERROR | Thread-68 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:31:51,573 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +24 一月 2026 | 18:31:55,307 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:31:55,891 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:32:20,414 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:32:21,245 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:32:21,748 | ERROR | Thread-72 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:32:21,750 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +24 一月 2026 | 18:32:41,576 | ERROR | Thread-76 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:32:41,578 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +24 一月 2026 | 18:32:45,642 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:32:46,266 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:33:10,208 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:33:10,856 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:33:11,674 | ERROR | Thread-81 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:33:11,675 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +24 一月 2026 | 18:33:31,748 | ERROR | Thread-85 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:33:31,749 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +24 一月 2026 | 18:33:35,566 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:33:36,172 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:33:40,488 | ERROR | Thread-90 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:127) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:33:40,490 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnReceive +24 一月 2026 | 18:34:00,248 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:34:00,427 | INFO | qtp1605283233-120 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 +24 一月 2026 | 18:34:01,032 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:317807 +24 一月 2026 | 18:34:01,040 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] +24 一月 2026 | 18:34:01,407 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:254211 +24 一月 2026 | 18:34:01,426 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] +24 一月 2026 | 18:34:01,663 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +24 一月 2026 | 18:34:02,067 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:34:02,251 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:34:02,387 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101777 +24 一月 2026 | 18:34:02,783 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:291186 +24 一月 2026 | 18:34:02,842 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:34:02,881 | INFO | qtp1605283233-120 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:2735ms +24 一月 2026 | 18:34:02,918 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:34:02,973 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:34:02,973 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:34:02,973 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 18:34:03,072 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 18:34:03,104 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 18:34:03,115 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 18:34:03,115 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:7907000 +24 一月 2026 | 18:34:03,115 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 18:34:03,115 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 18:34:03,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 18:34:03,268 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e76a94 +24 一月 2026 | 18:34:03,372 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 18:34:03,418 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:34:50,619 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:34:51,226 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:34:51,924 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:34:52,088 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101888 +24 一月 2026 | 18:34:52,510 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:909774 +24 一月 2026 | 18:34:52,530 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] +24 一月 2026 | 18:34:52,575 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] +24 一月 2026 | 18:34:52,608 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:34:52,608 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:34:52,608 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 18:34:52,784 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 18:34:52,832 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 18:34:52,841 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 18:34:52,841 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6945000 +24 一月 2026 | 18:34:52,841 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 18:34:52,841 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 18:34:52,918 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 18:34:52,976 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@44b03955 +24 一月 2026 | 18:34:53,037 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 18:34:53,167 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:35:13,623 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[203], weight=5, id=1, type=6, card=203}] +24 一月 2026 | 18:35:15,266 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:35:18,586 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:35:32,701 | ERROR | Thread-102 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:35:32,717 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +24 一月 2026 | 18:35:40,292 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:35:40,910 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:35:51,993 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[201], weight=3, id=1, type=4, card=201}, {opcard=[201], weight=4, id=2, type=4, card=201}] +24 一月 2026 | 18:35:52,054 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 205, 204, 204, 203, 201, 201, 201, 201, 103, 103, 101, 101, 101] +24 一月 2026 | 18:35:52,054 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:35:52,054 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:35:52,054 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:35:52,054 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101] +24 一月 2026 | 18:36:02,580 | ERROR | Thread-107 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:36:02,594 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +24 一月 2026 | 18:36:03,384 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 205, 204, 204, 203, 201, 201, 201, 201, 103, 103, 101, 101, 104] +24 一月 2026 | 18:36:03,384 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:36:03,384 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:36:03,384 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:36:03,384 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 109] +24 一月 2026 | 18:36:05,110 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 205, 204, 204, 203, 201, 201, 201, 201, 103, 103, 101, 101, 103] +24 一月 2026 | 18:36:05,110 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:36:05,110 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:36:05,110 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:36:05,110 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 104, 109, 108] +24 一月 2026 | 18:36:05,503 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:36:06,196 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:36:20,503 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 205, 204, 204, 203, 201, 201, 201, 201, 103, 101, 101, 103, 107] +24 一月 2026 | 18:36:20,503 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:36:20,503 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:36:20,503 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:36:20,504 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 104, 103, 109, 108, 107] +24 一月 2026 | 18:36:22,709 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 205, 204, 204, 203, 201, 201, 201, 201, 103, 101, 101, 103, 208] +24 一月 2026 | 18:36:22,709 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:36:22,709 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:36:22,709 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:36:22,709 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 104, 103, 107, 109, 108, 107, 106] +24 一月 2026 | 18:36:22,724 | ERROR | Thread-111 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:36:22,740 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +24 一月 2026 | 18:36:26,349 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[203], weight=5, id=1, type=6, card=203}] +24 一月 2026 | 18:36:30,312 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:36:31,308 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:36:52,785 | ERROR | Thread-116 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:36:52,801 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +24 一月 2026 | 18:36:55,536 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:36:56,281 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:37:12,577 | ERROR | Thread-120 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:37:12,592 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +24 一月 2026 | 18:37:20,406 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:37:21,148 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:37:42,708 | ERROR | Thread-124 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:37:42,724 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +24 一月 2026 | 18:37:45,372 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:37:46,010 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:38:02,581 | ERROR | Thread-129 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:38:02,596 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +24 一月 2026 | 18:38:10,445 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:38:11,025 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:41:10,804 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +24 一月 2026 | 18:41:10,851 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +24 一月 2026 | 18:41:12,138 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:41:13,111 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:909774 +24 一月 2026 | 18:41:13,124 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] +24 一月 2026 | 18:41:13,313 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:291186 +24 一月 2026 | 18:41:13,334 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] +24 一月 2026 | 18:41:13,595 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +24 一月 2026 | 18:41:13,967 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:41:14,208 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:41:14,301 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 +24 一月 2026 | 18:41:14,614 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:982153 +24 一月 2026 | 18:41:14,629 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:41:14,718 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:41:14,769 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:41:14,769 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:41:14,770 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 18:41:14,914 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 18:41:14,944 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 18:41:14,954 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 18:41:14,954 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:16208000 +24 一月 2026 | 18:41:14,954 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 18:41:14,954 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 18:41:15,014 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 18:41:15,077 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1d3b59a1 +24 一月 2026 | 18:41:15,187 | INFO | qtp1605283233-67 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 +24 一月 2026 | 18:41:15,211 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 18:41:15,239 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:41:16,285 | INFO | qtp1605283233-67 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:1464ms +24 一月 2026 | 18:41:24,833 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 204, 208, 201, 102, 208, 203, 105, 101, 202, 205, 202, 206, 208] +24 一月 2026 | 18:41:24,833 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:41:24,833 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:41:24,834 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:41:24,834 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +24 一月 2026 | 18:41:36,877 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:41:38,243 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:982153 +24 一月 2026 | 18:41:38,257 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [112233,101555]] +24 一月 2026 | 18:41:38,320 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [112233,101555]] +24 一月 2026 | 18:41:38,367 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:41:38,367 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:41:38,367 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom enter group fail, room full:g{330800}:m101666 room_key:room:982153 +24 一月 2026 | 18:41:38,579 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +24 一月 2026 | 18:41:38,985 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:41:39,182 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:41:39,292 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101666 +24 一月 2026 | 18:41:39,668 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:508200 +24 一月 2026 | 18:41:39,678 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:41:39,777 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:41:39,803 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:41:39,803 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:41:39,803 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 18:41:39,926 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 18:41:39,965 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 18:41:39,982 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=2, id=1, type=2, card=208}, {opcard=[208], weight=3, id=2, type=3, card=208}] +24 一月 2026 | 18:41:39,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 18:41:39,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6957000 +24 一月 2026 | 18:41:39,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 18:41:39,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 18:41:40,114 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 18:41:40,122 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] +24 一月 2026 | 18:41:40,185 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 204, 208, 201, 102, 208, 203, 105, 202, 205, 202, 206, 208, 208] +24 一月 2026 | 18:41:40,185 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:41:40,185 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:41:40,185 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:41:40,185 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 208] +24 一月 2026 | 18:41:40,205 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4223d7e8 +24 一月 2026 | 18:41:40,318 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 18:41:40,358 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:41:51,802 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] +24 一月 2026 | 18:41:51,863 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 201, 102, 208, 203, 105, 202, 205, 202, 206, 208, 208, 103] +24 一月 2026 | 18:41:51,863 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:41:51,863 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:41:51,863 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:41:51,863 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 208, 109] +24 一月 2026 | 18:41:54,919 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] +24 一月 2026 | 18:41:54,982 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 102, 208, 203, 105, 202, 205, 202, 206, 208, 208, 103, 107] +24 一月 2026 | 18:41:54,982 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:41:54,982 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:41:54,982 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:41:54,982 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 201, 208, 109, 107] +24 一月 2026 | 18:41:58,667 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] +24 一月 2026 | 18:41:58,727 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 102, 208, 105, 202, 205, 202, 206, 208, 208, 103, 107, 208] +24 一月 2026 | 18:41:58,728 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:41:58,728 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:41:58,728 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:41:58,728 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 201, 203, 208, 109, 107, 205] +24 一月 2026 | 18:42:01,952 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:42:02,536 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:42:26,814 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:42:26,817 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +24 一月 2026 | 18:42:26,896 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:42:27,458 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:42:27,901 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:127) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:42:27,901 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:127) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:42:27,901 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:127) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:42:27,903 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnReceive +24 一月 2026 | 18:42:27,903 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnReceive +24 一月 2026 | 18:42:27,903 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnReceive +24 一月 2026 | 18:42:49,327 | INFO | qtp1605283233-64 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 +24 一月 2026 | 18:42:51,230 | INFO | qtp1605283233-64 | taurus.web.WebFilter | | action: match_room[{user}:112233] time:2208ms +24 一月 2026 | 18:42:51,792 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:42:52,079 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:42:52,380 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:42:52,589 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101777 +24 一月 2026 | 18:42:52,980 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:243785 +24 一月 2026 | 18:42:53,005 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] +24 一月 2026 | 18:42:53,058 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, [112233]] +24 一月 2026 | 18:42:53,089 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:42:53,089 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:42:53,089 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 18:42:53,280 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 18:42:53,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 18:42:53,326 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 18:42:53,327 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:7907000 +24 一月 2026 | 18:42:53,327 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 18:42:53,327 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 18:42:53,364 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 18:42:53,613 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4f69f3e6 +24 一月 2026 | 18:42:53,736 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 18:42:53,786 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:43:03,323 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 204, 208, 201, 102, 208, 203, 105, 101, 202, 205, 202, 206, 208] +24 一月 2026 | 18:43:03,323 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:43:03,323 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:43:03,323 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:43:03,323 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +24 一月 2026 | 18:43:06,907 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[202, 201], weight=1, id=1, type=1, card=203}, {opcard=[204, 202], weight=1, id=2, type=1, card=203}, {opcard=[204, 205], weight=1, id=3, type=1, card=203}] +24 一月 2026 | 18:43:07,031 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] +24 一月 2026 | 18:43:07,092 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 204, 208, 201, 102, 208, 203, 105, 202, 205, 202, 206, 208, 208] +24 一月 2026 | 18:43:07,092 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:43:07,092 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:43:07,092 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:43:07,092 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 203] +24 一月 2026 | 18:43:09,919 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] +24 一月 2026 | 18:43:09,981 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 201, 102, 208, 203, 105, 202, 205, 202, 206, 208, 208, 103] +24 一月 2026 | 18:43:09,981 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:43:09,981 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:43:09,981 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:43:09,981 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 203, 104] +24 一月 2026 | 18:43:11,938 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] +24 一月 2026 | 18:43:12,001 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 102, 208, 203, 105, 202, 205, 202, 206, 208, 208, 103, 107] +24 一月 2026 | 18:43:12,001 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:43:12,001 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:43:12,001 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:43:12,001 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 201, 203, 104, 107] +24 一月 2026 | 18:43:13,232 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] +24 一月 2026 | 18:43:13,293 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 102, 208, 105, 202, 205, 202, 206, 208, 208, 103, 107, 107] +24 一月 2026 | 18:43:13,293 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:43:13,293 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:43:13,293 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:43:13,293 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 201, 203, 203, 104, 107, 205] +24 一月 2026 | 18:43:16,883 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:43:17,417 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] +24 一月 2026 | 18:43:17,478 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 102, 208, 105, 202, 205, 202, 208, 208, 103, 107, 107, 207] +24 一月 2026 | 18:43:17,478 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:43:17,478 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:43:17,478 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:43:17,478 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 201, 203, 206, 203, 104, 107, 205, 209] +24 一月 2026 | 18:43:17,860 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:243785 +24 一月 2026 | 18:43:17,877 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [112233,101777]] +24 一月 2026 | 18:43:17,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [112233,101777]] +24 一月 2026 | 18:43:17,962 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:43:17,962 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:43:17,962 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom enter group fail, room full:g{330800}:m101888 room_key:room:243785 +24 一月 2026 | 18:43:18,161 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +24 一月 2026 | 18:43:18,515 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +24 一月 2026 | 18:43:18,868 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:43:18,963 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101888 +24 一月 2026 | 18:43:19,272 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:197235 +24 一月 2026 | 18:43:19,288 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:43:19,342 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:43:19,355 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[108, 107], weight=1, id=1, type=1, card=109}] +24 一月 2026 | 18:43:19,389 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:43:19,389 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:43:19,389 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 18:43:19,417 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] +24 一月 2026 | 18:43:19,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 102, 208, 105, 202, 205, 202, 208, 208, 107, 107, 207, 203] +24 一月 2026 | 18:43:19,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:43:19,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:43:19,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:43:19,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 201, 203, 206, 103, 203, 104, 107, 205, 209, 109] +24 一月 2026 | 18:43:19,518 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 18:43:19,547 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 18:43:19,564 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 18:43:19,564 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:7026000 +24 一月 2026 | 18:43:19,565 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 18:43:19,565 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 18:43:19,637 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 18:43:19,699 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@59b1a74 +24 一月 2026 | 18:43:19,758 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 18:43:19,808 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:43:21,377 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[202, 203], weight=1, id=1, type=1, card=201}] +24 一月 2026 | 18:43:21,440 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] +24 一月 2026 | 18:43:21,502 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 102, 208, 105, 202, 205, 202, 208, 208, 107, 207, 203, 104] +24 一月 2026 | 18:43:21,502 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:43:21,502 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:43:21,502 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:43:21,502 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 201, 203, 206, 103, 107, 203, 104, 107, 205, 209, 109, 201] +24 一月 2026 | 18:43:28,261 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208, 207], weight=1, id=1, type=1, card=209}] +24 一月 2026 | 18:43:28,322 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] +24 一月 2026 | 18:43:28,385 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 102, 208, 105, 202, 205, 202, 208, 208, 207, 203, 104, 106] +24 一月 2026 | 18:43:28,385 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:43:28,385 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:43:28,385 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:43:28,385 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 201, 203, 206, 103, 107, 107, 203, 104, 107, 205, 209, 109, 201, 209] +24 一月 2026 | 18:43:30,226 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[105, 106], weight=1, id=1, type=1, card=104}] +24 一月 2026 | 18:43:30,287 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] +24 一月 2026 | 18:43:30,349 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 102, 208, 105, 202, 205, 202, 208, 208, 203, 104, 106, 107] +24 一月 2026 | 18:43:30,349 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:43:30,349 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:43:30,349 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:43:30,349 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 201, 203, 206, 103, 107, 107, 207, 203, 104, 107, 205, 209, 109, 201, 209, 104] +24 一月 2026 | 18:43:32,356 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[202], weight=2, id=1, type=2, card=202}] +24 一月 2026 | 18:43:32,418 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] +24 一月 2026 | 18:43:32,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 102, 208, 105, 202, 205, 202, 208, 208, 104, 106, 107, 105] +24 一月 2026 | 18:43:32,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:43:32,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:43:32,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:43:32,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 201, 203, 206, 103, 107, 107, 207, 203, 203, 104, 107, 205, 209, 109, 201, 209, 104, 202] +24 一月 2026 | 18:43:33,630 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] +24 一月 2026 | 18:43:33,691 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 102, 208, 105, 202, 205, 202, 208, 208, 106, 107, 105, 206] +24 一月 2026 | 18:43:33,691 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:43:33,691 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:43:33,691 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:43:33,691 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 201, 203, 206, 103, 107, 107, 207, 203, 104, 203, 104, 107, 205, 209, 109, 201, 209, 104, 202, 206] +24 一月 2026 | 18:43:35,541 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[108, 107], weight=1, id=1, type=1, card=109}] +24 一月 2026 | 18:43:35,602 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] +24 一月 2026 | 18:43:35,665 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 208, 102, 208, 105, 202, 205, 202, 208, 208, 107, 105, 206, 104] +24 一月 2026 | 18:43:35,665 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +24 一月 2026 | 18:43:35,665 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +24 一月 2026 | 18:43:35,665 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +24 一月 2026 | 18:43:35,665 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 201, 203, 206, 103, 107, 107, 207, 203, 104, 106, 203, 104, 107, 205, 209, 109, 201, 209, 104, 202, 206, 109] +24 一月 2026 | 18:43:37,209 | INFO | NetEvent-Thread | hunan.DoTest | | tipList[{opcard=[208], weight=3, id=1, type=4, card=208}] +24 一月 2026 | 18:43:41,786 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:44:01,260 | ERROR | Thread-56 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:44:07,054 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:44:31,101 | ERROR | Thread-60 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:44:32,265 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:44:51,147 | ERROR | Thread-65 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:44:56,715 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:45:21,224 | ERROR | Thread-69 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:45:21,862 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:45:41,273 | ERROR | Thread-74 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:45:46,896 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:46:11,083 | ERROR | Thread-78 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:46:11,843 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:46:31,130 | ERROR | Thread-82 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:46:36,817 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:47:01,196 | ERROR | Thread-87 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:47:01,804 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:47:21,238 | ERROR | Thread-91 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:47:27,072 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:47:51,299 | ERROR | Thread-96 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:47:51,956 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:48:11,095 | ERROR | Thread-100 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:48:16,856 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:48:41,150 | ERROR | Thread-104 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:48:42,013 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:49:01,193 | ERROR | Thread-109 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:49:06,888 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:49:31,251 | ERROR | Thread-113 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:49:31,933 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:49:51,271 | ERROR | Thread-118 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:49:56,771 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:49:57,788 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +24 一月 2026 | 18:49:58,446 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:49:58,560 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 +24 一月 2026 | 18:49:59,237 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:815751 +24 一月 2026 | 18:49:59,248 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:49:59,321 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:49:59,365 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:49:59,366 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:49:59,366 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 18:49:59,473 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 18:49:59,499 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 18:49:59,510 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 18:49:59,510 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:16207000 +24 一月 2026 | 18:49:59,510 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 18:49:59,510 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 18:49:59,547 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 18:49:59,627 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1d3b59a1 +24 一月 2026 | 18:49:59,711 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 18:49:59,753 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:50:11,110 | ERROR | Thread-48 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:50:11,111 | ERROR | Thread-52 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:50:21,815 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:50:21,907 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101666 login +24 一月 2026 | 18:50:21,918 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 +24 一月 2026 | 18:50:23,894 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +24 一月 2026 | 18:50:24,563 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:50:24,721 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101666 +24 一月 2026 | 18:50:25,137 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:240054 +24 一月 2026 | 18:50:25,158 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:50:25,251 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:50:25,331 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:50:25,331 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:50:25,331 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 18:50:25,426 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 18:50:25,466 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 18:50:25,480 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 18:50:25,480 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6957000 +24 一月 2026 | 18:50:25,480 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 18:50:25,480 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 18:50:25,541 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 18:50:25,642 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4223d7e8 +24 一月 2026 | 18:50:25,720 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 18:50:25,752 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:50:31,187 | ERROR | Thread-122 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:50:46,866 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:50:51,277 | ERROR | Thread-126 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:51:11,322 | ERROR | Thread-130 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:51:11,770 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:51:12,343 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:51:12,492 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 +24 一月 2026 | 18:51:12,834 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:240054 +24 一月 2026 | 18:51:12,842 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +24 一月 2026 | 18:51:12,913 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +24 一月 2026 | 18:51:12,947 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:51:12,947 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:51:12,947 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 18:51:13,095 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 18:51:13,132 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 18:51:13,147 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 18:51:13,147 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:16207000 +24 一月 2026 | 18:51:13,147 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 18:51:13,147 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 18:51:13,182 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 18:51:13,250 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1d3b59a1 +24 一月 2026 | 18:51:13,330 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 18:51:13,355 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:51:41,097 | ERROR | Thread-135 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:51:44,597 | INFO | qtp1605283233-137 | group.controller.GroupController | | jefe_test: 177475 +24 一月 2026 | 18:51:44,920 | INFO | qtp1605283233-137 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:479ms +24 一月 2026 | 18:51:46,432 | INFO | qtp1605283233-137 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:421ms +24 一月 2026 | 18:51:50,357 | INFO | qtp1605283233-67 | group.controller.GroupController | | jefe_test: 177475 +24 一月 2026 | 18:51:50,643 | INFO | qtp1605283233-67 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:428ms +24 一月 2026 | 18:51:51,150 | INFO | qtp1605283233-183 | group.controller.GroupController | | jefe_test: 177475 +24 一月 2026 | 18:51:51,552 | INFO | qtp1605283233-183 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:566ms +24 一月 2026 | 18:51:52,917 | INFO | qtp1605283233-137 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:496ms +24 一月 2026 | 18:52:07,748 | INFO | qtp1605283233-183 | taurus.web.WebFilter | | action: get_partner_stat[{user}:177475] time:849ms +24 一月 2026 | 18:52:41,173 | INFO | qtp1605283233-183 | group.controller.GroupController | | jefe_test: 177475 +24 一月 2026 | 18:52:41,568 | INFO | qtp1605283233-183 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:545ms +24 一月 2026 | 18:52:42,681 | INFO | qtp1605283233-67 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:427ms +24 一月 2026 | 18:53:05,120 | INFO | qtp1605283233-183 | group.controller.GroupController | | jefe_test: 177475 +24 一月 2026 | 18:53:05,374 | INFO | qtp1605283233-183 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:424ms +24 一月 2026 | 18:53:06,076 | INFO | qtp1605283233-183 | group.controller.GroupController | | jefe_test: 177475 +24 一月 2026 | 18:53:06,320 | INFO | qtp1605283233-183 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:366ms +24 一月 2026 | 18:53:07,760 | INFO | qtp1605283233-184 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:427ms +24 一月 2026 | 18:54:19,201 | INFO | qtp1605283233-183 | group.controller.GroupController | | jefe_test: 177475 +24 一月 2026 | 18:54:19,731 | INFO | qtp1605283233-183 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:740ms +24 一月 2026 | 18:54:19,984 | INFO | qtp1605283233-183 | group.controller.GroupController | | jefe_test: 177475 +24 一月 2026 | 18:54:20,252 | INFO | qtp1605283233-183 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:399ms +24 一月 2026 | 18:54:20,983 | INFO | qtp1605283233-178 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:450ms +24 一月 2026 | 18:54:24,463 | INFO | qtp1605283233-183 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 +24 一月 2026 | 18:54:26,312 | INFO | qtp1605283233-183 | taurus.web.WebFilter | | action: match_room[{user}:177475] time:2273ms +24 一月 2026 | 18:54:56,646 | INFO | qtp1605283233-178 | taurus.web.WebFilter | | action: get_partner_stat[{user}:177475] time:764ms +24 一月 2026 | 18:54:56,814 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:54:56,898 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101555 login +24 一月 2026 | 18:54:56,929 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 +24 一月 2026 | 18:54:58,478 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:807953 +24 一月 2026 | 18:54:58,521 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] +24 一月 2026 | 18:54:58,825 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +24 一月 2026 | 18:54:59,367 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:54:59,477 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 +24 一月 2026 | 18:54:59,494 | INFO | qtp1605283233-184 | taurus.web.WebFilter | | action: get_partner_stat_member[{user}:177475] time:409ms +24 一月 2026 | 18:54:59,747 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:312130 +24 一月 2026 | 18:54:59,758 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:54:59,836 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:54:59,866 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:54:59,866 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:54:59,866 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 18:55:00,098 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 18:55:00,144 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 18:55:00,153 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 18:55:00,153 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:16207000 +24 一月 2026 | 18:55:00,153 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 18:55:00,153 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 18:55:00,226 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 18:55:00,387 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1d3b59a1 +24 一月 2026 | 18:55:00,567 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 18:55:00,618 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:55:04,088 | INFO | qtp1605283233-187 | group.controller.GroupRoomController | | matchRoom() ==> pid = 10 +24 一月 2026 | 18:55:05,390 | INFO | qtp1605283233-187 | taurus.web.WebFilter | | action: match_room[{user}:177475] time:1642ms +24 一月 2026 | 18:55:21,764 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:55:22,085 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101666 login +24 一月 2026 | 18:55:22,098 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 +24 一月 2026 | 18:55:23,486 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:312130 +24 一月 2026 | 18:55:23,500 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [177475,101555]] +24 一月 2026 | 18:55:23,535 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [177475,101555]] +24 一月 2026 | 18:55:23,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:55:23,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:55:23,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom enter group fail, room full:g{330800}:m101666 room_key:room:312130 +24 一月 2026 | 18:55:23,733 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +24 一月 2026 | 18:55:24,236 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:55:24,318 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101666 +24 一月 2026 | 18:55:24,661 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:851507 +24 一月 2026 | 18:55:24,671 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:55:24,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:55:24,751 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:55:24,751 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:55:24,751 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 18:55:24,855 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 18:55:24,877 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 18:55:24,893 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 18:55:24,893 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6957000 +24 一月 2026 | 18:55:24,893 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 18:55:24,893 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 18:55:24,987 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 18:55:25,075 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4223d7e8 +24 一月 2026 | 18:55:25,168 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 18:55:25,205 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:55:31,295 | ERROR | Thread-143 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:55:46,958 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:55:51,181 | ERROR | Thread-147 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:55:59,476 | INFO | qtp1605283233-184 | group.controller.GroupController | | jefe_test: 177475 +24 一月 2026 | 18:55:59,716 | INFO | qtp1605283233-184 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:377ms +24 一月 2026 | 18:56:00,312 | INFO | qtp1605283233-178 | group.controller.GroupController | | jefe_test: 177475 +24 一月 2026 | 18:56:00,590 | INFO | qtp1605283233-178 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:411ms +24 一月 2026 | 18:56:11,748 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:56:11,807 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101555 login +24 一月 2026 | 18:56:11,819 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 +24 一月 2026 | 18:56:13,333 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:851507 +24 一月 2026 | 18:56:13,347 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] +24 一月 2026 | 18:56:13,496 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:312130 +24 一月 2026 | 18:56:13,505 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] +24 一月 2026 | 18:56:13,825 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +24 一月 2026 | 18:56:14,222 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:56:14,345 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101555 +24 一月 2026 | 18:56:14,621 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:395642 +24 一月 2026 | 18:56:14,653 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:56:14,715 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:56:14,745 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:56:14,745 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:56:14,745 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 18:56:14,843 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 18:56:14,878 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 18:56:14,891 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 18:56:14,891 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:16206000 +24 一月 2026 | 18:56:14,891 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 18:56:14,891 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 18:56:14,935 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 18:56:15,007 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1d3b59a1 +24 一月 2026 | 18:56:15,062 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 18:56:15,132 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:56:18,026 | INFO | qtp1605283233-188 | group.controller.GroupController | | jefe_test: 177475 +24 一月 2026 | 18:56:18,403 | INFO | qtp1605283233-188 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:509ms +24 一月 2026 | 18:56:22,002 | INFO | qtp1605283233-184 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:466ms +24 一月 2026 | 18:56:25,109 | INFO | qtp1605283233-178 | taurus.web.WebFilter | | action: join_room[{user}:177475] time:1941ms +24 一月 2026 | 18:56:37,398 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:56:37,898 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101666 login +24 一月 2026 | 18:56:37,915 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 +24 一月 2026 | 18:56:39,591 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:395642 +24 一月 2026 | 18:56:39,610 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [101555,177475]] +24 一月 2026 | 18:56:39,652 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 1, 0, svr8840, 10, 10, 330800, 2, 0, 2, [101555,177475]] +24 一月 2026 | 18:56:39,728 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:56:39,729 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:56:39,729 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom enter group fail, room full:g{330800}:m101666 room_key:room:395642 +24 一月 2026 | 18:56:40,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +24 一月 2026 | 18:56:40,902 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:56:41,038 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101666 +24 一月 2026 | 18:56:41,263 | ERROR | Thread-151 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:56:41,703 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:530679 +24 一月 2026 | 18:56:41,715 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:56:41,860 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:56:41,906 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:56:41,906 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:56:41,906 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 18:56:42,110 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 18:56:42,171 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 18:56:42,213 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 18:56:42,213 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6957000 +24 一月 2026 | 18:56:42,213 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 18:56:42,213 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 18:56:42,298 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 18:56:42,497 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4223d7e8 +24 一月 2026 | 18:56:43,035 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 18:56:43,140 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:57:02,297 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:57:08,835 | INFO | qtp1605283233-184 | group.controller.GroupController | | jefe_test: 177475 +24 一月 2026 | 18:57:09,118 | INFO | qtp1605283233-184 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:446ms +24 一月 2026 | 18:57:09,522 | INFO | qtp1605283233-184 | group.controller.GroupController | | jefe_test: 177475 +24 一月 2026 | 18:57:09,803 | INFO | qtp1605283233-184 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:406ms +24 一月 2026 | 18:57:11,141 | ERROR | Thread-155 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:57:15,710 | INFO | qtp1605283233-178 | group.controller.GroupController | | jefe_test: 177475 +24 一月 2026 | 18:57:16,021 | INFO | qtp1605283233-178 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:628ms +24 一月 2026 | 18:57:26,713 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:57:26,802 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101777 login +24 一月 2026 | 18:57:26,811 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 +24 一月 2026 | 18:57:28,400 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:395642 +24 一月 2026 | 18:57:28,410 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] +24 一月 2026 | 18:57:28,617 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:530679 +24 一月 2026 | 18:57:28,656 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] +24 一月 2026 | 18:57:28,855 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +24 一月 2026 | 18:57:29,311 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:57:29,487 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101777 +24 一月 2026 | 18:57:29,827 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:801562 +24 一月 2026 | 18:57:29,835 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:57:29,895 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:57:29,935 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:57:29,935 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:57:29,935 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 18:57:30,081 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 18:57:30,107 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 18:57:30,117 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 18:57:30,117 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:7906000 +24 一月 2026 | 18:57:30,117 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 18:57:30,117 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 18:57:30,174 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 18:57:30,236 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4f69f3e6 +24 一月 2026 | 18:57:30,308 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 18:57:30,352 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:57:31,596 | INFO | qtp1605283233-178 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:667ms +24 一月 2026 | 18:57:36,828 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:57:36,922 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101777 +24 一月 2026 | 18:57:37,285 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:634207 +24 一月 2026 | 18:57:37,294 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:57:37,342 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:57:37,375 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +24 一月 2026 | 18:57:37,385 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:57:38,772 | INFO | qtp1605283233-188 | taurus.web.WebFilter | | action: join_room[{user}:177475] time:1578ms +24 一月 2026 | 18:58:01,198 | ERROR | Thread-159 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:58:16,773 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:58:17,640 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101888 login +24 一月 2026 | 18:58:17,648 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 +24 一月 2026 | 18:58:18,477 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:58:18,570 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101888 +24 一月 2026 | 18:58:18,899 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:634207 +24 一月 2026 | 18:58:18,911 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +24 一月 2026 | 18:58:18,944 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, []] +24 一月 2026 | 18:58:18,980 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:58:18,980 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:58:18,980 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 18:58:19,411 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 18:58:19,451 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 18:58:19,462 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 18:58:19,462 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:7026000 +24 一月 2026 | 18:58:19,462 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 18:58:19,462 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 18:58:19,572 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 18:58:19,633 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@59b1a74 +24 一月 2026 | 18:58:19,772 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 18:58:19,806 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:58:19,904 | INFO | qtp1605283233-178 | group.controller.GroupController | | jefe_test: 177475 +24 一月 2026 | 18:58:20,270 | INFO | qtp1605283233-178 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:509ms +24 一月 2026 | 18:58:20,776 | INFO | qtp1605283233-178 | group.controller.GroupController | | jefe_test: 177475 +24 一月 2026 | 18:58:21,038 | INFO | qtp1605283233-178 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:398ms +24 一月 2026 | 18:58:22,184 | INFO | qtp1605283233-178 | taurus.web.WebFilter | | action: enter_group[{user}:177475] time:400ms +24 一月 2026 | 18:58:51,302 | ERROR | Thread-164 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 18:59:17,349 | INFO | qtp1605283233-218 | taurus.web.WebFilter | | action: get_my_members[{user}:177475] time:39ms +24 一月 2026 | 18:59:20,781 | INFO | qtp1605283233-178 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:43ms +24 一月 2026 | 18:59:22,665 | INFO | qtp1605283233-218 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:25ms +24 一月 2026 | 18:59:24,130 | INFO | qtp1605283233-178 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:54ms +24 一月 2026 | 18:59:30,235 | INFO | qtp1605283233-218 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:40ms +24 一月 2026 | 18:59:31,831 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 18:59:31,951 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101666 login +24 一月 2026 | 18:59:31,962 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 +24 一月 2026 | 18:59:33,564 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:801562 +24 一月 2026 | 18:59:33,577 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] +24 一月 2026 | 18:59:33,723 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:634207 +24 一月 2026 | 18:59:33,733 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] +24 一月 2026 | 18:59:33,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +24 一月 2026 | 18:59:34,461 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 18:59:34,586 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101666 +24 一月 2026 | 18:59:34,850 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:431875 +24 一月 2026 | 18:59:34,861 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:59:34,913 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 18:59:34,976 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 18:59:34,976 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 18:59:34,976 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 18:59:35,118 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 18:59:35,142 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 18:59:35,157 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 18:59:35,157 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6957000 +24 一月 2026 | 18:59:35,157 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 18:59:35,157 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 18:59:35,211 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 18:59:35,307 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4223d7e8 +24 一月 2026 | 18:59:35,374 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 18:59:35,421 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 18:59:35,446 | INFO | qtp1605283233-178 | taurus.web.WebFilter | | action: get_groups[{user}:177475] time:26ms +24 一月 2026 | 18:59:56,718 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 19:00:01,100 | ERROR | Thread-169 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 19:00:21,079 | ERROR | Thread-173 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 19:00:21,963 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 19:00:22,942 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:101888 login +24 一月 2026 | 19:00:23,031 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 +24 一月 2026 | 19:00:24,012 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 19:00:24,231 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:101888 +24 一月 2026 | 19:00:24,791 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:562807 +24 一月 2026 | 19:00:24,834 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 19:00:24,882 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 19:00:24,906 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 19:00:24,906 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 19:00:24,906 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 19:00:25,007 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 19:00:25,036 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 19:00:25,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 19:00:25,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:7026000 +24 一月 2026 | 19:00:25,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 19:00:25,052 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 19:00:25,101 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 19:00:25,189 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@59b1a74 +24 一月 2026 | 19:00:25,250 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 19:00:25,288 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] +24 一月 2026 | 19:00:59,796 | ERROR | Thread-178 | client.io.ISocket | | Receiving failed.: +taurus.client.io.TSocketException + at taurus.client.io.SocketTcp.__read(SocketTcp.java:131) + at taurus.client.io.SocketTcp.access$100(SocketTcp.java:20) + at taurus.client.io.SocketTcp$2.run(SocketTcp.java:71) + at java.lang.Thread.run(Thread.java:750) +24 一月 2026 | 19:01:04,653 | INFO | pool-3-thread-1 | hunan.DoTest | | 数据--------{} +24 一月 2026 | 19:01:05,035 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:102555 login +24 一月 2026 | 19:01:05,043 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = 123456 +24 一月 2026 | 19:01:05,687 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +24 一月 2026 | 19:01:05,817 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:102555 +24 一月 2026 | 19:01:06,068 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:420482 +24 一月 2026 | 19:01:06,075 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 19:01:06,109 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 1000, 5000, 0, 1, svr8840, 10, 10, 330800, 2, 0, 2, null] +24 一月 2026 | 19:01:06,143 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +24 一月 2026 | 19:01:06,143 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +24 一月 2026 | 19:01:06,143 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +24 一月 2026 | 19:01:06,248 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +24 一月 2026 | 19:01:06,274 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +24 一月 2026 | 19:01:06,285 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +24 一月 2026 | 19:01:06,285 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8177000 +24 一月 2026 | 19:01:06,285 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +24 一月 2026 | 19:01:06,285 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +24 一月 2026 | 19:01:06,318 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +24 一月 2026 | 19:01:06,366 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@d2eaada +24 一月 2026 | 19:01:06,420 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:null +24 一月 2026 | 19:01:06,446 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[192.168.0.18, 6311, 192.168.0.18] diff --git a/game_web/web_group/target/ROOT.war b/game_web/web_group/target/ROOT.war index a034cad..a258ffe 100644 Binary files a/game_web/web_group/target/ROOT.war and b/game_web/web_group/target/ROOT.war differ diff --git a/game_web/web_group/target/ROOT/WEB-INF/classes/com/group/MainServer$1.class b/game_web/web_group/target/ROOT/WEB-INF/classes/com/group/MainServer$1.class index 02bae93..d7ac64b 100644 Binary files a/game_web/web_group/target/ROOT/WEB-INF/classes/com/group/MainServer$1.class and b/game_web/web_group/target/ROOT/WEB-INF/classes/com/group/MainServer$1.class differ diff --git a/game_web/web_group/target/ROOT/WEB-INF/classes/com/group/MainServer$2.class b/game_web/web_group/target/ROOT/WEB-INF/classes/com/group/MainServer$2.class index 20fe41f..9daa3dd 100644 Binary files a/game_web/web_group/target/ROOT/WEB-INF/classes/com/group/MainServer$2.class and b/game_web/web_group/target/ROOT/WEB-INF/classes/com/group/MainServer$2.class differ diff --git a/game_web/web_group/target/ROOT/WEB-INF/classes/com/group/MainServer.class b/game_web/web_group/target/ROOT/WEB-INF/classes/com/group/MainServer.class index 577c028..16913a8 100644 Binary files a/game_web/web_group/target/ROOT/WEB-INF/classes/com/group/MainServer.class and b/game_web/web_group/target/ROOT/WEB-INF/classes/com/group/MainServer.class differ diff --git a/game_web/web_group/target/ROOT/WEB-INF/classes/com/group/job/UpdatePlayRoomJob.class b/game_web/web_group/target/ROOT/WEB-INF/classes/com/group/job/UpdatePlayRoomJob.class index 1a9bd30..2e498e9 100644 Binary files a/game_web/web_group/target/ROOT/WEB-INF/classes/com/group/job/UpdatePlayRoomJob.class and b/game_web/web_group/target/ROOT/WEB-INF/classes/com/group/job/UpdatePlayRoomJob.class differ diff --git a/game_web/web_group/target/ROOT/WEB-INF/lib/annotations-13.0.jar b/game_web/web_group/target/ROOT/WEB-INF/lib/annotations-13.0.jar new file mode 100644 index 0000000..fb794be Binary files /dev/null and b/game_web/web_group/target/ROOT/WEB-INF/lib/annotations-13.0.jar differ diff --git a/game_web/web_group/target/ROOT/WEB-INF/lib/kotlin-stdlib-1.5.10.jar b/game_web/web_group/target/ROOT/WEB-INF/lib/kotlin-stdlib-1.5.10.jar new file mode 100644 index 0000000..5015b3a Binary files /dev/null and b/game_web/web_group/target/ROOT/WEB-INF/lib/kotlin-stdlib-1.5.10.jar differ diff --git a/game_web/web_group/target/ROOT/WEB-INF/lib/kotlin-stdlib-common-1.5.10.jar b/game_web/web_group/target/ROOT/WEB-INF/lib/kotlin-stdlib-common-1.5.10.jar new file mode 100644 index 0000000..7999449 Binary files /dev/null and b/game_web/web_group/target/ROOT/WEB-INF/lib/kotlin-stdlib-common-1.5.10.jar differ diff --git a/game_web/web_group/target/ROOT/WEB-INF/lib/kotlin-stdlib-jdk7-1.5.10.jar b/game_web/web_group/target/ROOT/WEB-INF/lib/kotlin-stdlib-jdk7-1.5.10.jar new file mode 100644 index 0000000..f563b8b Binary files /dev/null and b/game_web/web_group/target/ROOT/WEB-INF/lib/kotlin-stdlib-jdk7-1.5.10.jar differ diff --git a/game_web/web_group/target/ROOT/WEB-INF/lib/kotlin-stdlib-jdk8-1.5.10.jar b/game_web/web_group/target/ROOT/WEB-INF/lib/kotlin-stdlib-jdk8-1.5.10.jar new file mode 100644 index 0000000..0e7a4ee Binary files /dev/null and b/game_web/web_group/target/ROOT/WEB-INF/lib/kotlin-stdlib-jdk8-1.5.10.jar differ diff --git a/game_web/web_group/target/ROOT/WEB-INF/lib/robot_common-1.0.7.jar b/game_web/web_group/target/ROOT/WEB-INF/lib/robot_common-1.0.8.jar similarity index 80% rename from game_web/web_group/target/ROOT/WEB-INF/lib/robot_common-1.0.7.jar rename to game_web/web_group/target/ROOT/WEB-INF/lib/robot_common-1.0.8.jar index 7b0854a..685b3dd 100644 Binary files a/game_web/web_group/target/ROOT/WEB-INF/lib/robot_common-1.0.7.jar and b/game_web/web_group/target/ROOT/WEB-INF/lib/robot_common-1.0.8.jar differ diff --git a/game_web/web_group/target/classes/com/group/MainServer$1.class b/game_web/web_group/target/classes/com/group/MainServer$1.class index 02bae93..d7ac64b 100644 Binary files a/game_web/web_group/target/classes/com/group/MainServer$1.class and b/game_web/web_group/target/classes/com/group/MainServer$1.class differ diff --git a/game_web/web_group/target/classes/com/group/MainServer$2.class b/game_web/web_group/target/classes/com/group/MainServer$2.class index 20fe41f..9daa3dd 100644 Binary files a/game_web/web_group/target/classes/com/group/MainServer$2.class and b/game_web/web_group/target/classes/com/group/MainServer$2.class differ diff --git a/game_web/web_group/target/classes/com/group/MainServer.class b/game_web/web_group/target/classes/com/group/MainServer.class index 577c028..16913a8 100644 Binary files a/game_web/web_group/target/classes/com/group/MainServer.class and b/game_web/web_group/target/classes/com/group/MainServer.class differ diff --git a/game_web/web_group/target/classes/com/group/job/UpdatePlayRoomJob.class b/game_web/web_group/target/classes/com/group/job/UpdatePlayRoomJob.class index 1a9bd30..2e498e9 100644 Binary files a/game_web/web_group/target/classes/com/group/job/UpdatePlayRoomJob.class and b/game_web/web_group/target/classes/com/group/job/UpdatePlayRoomJob.class differ diff --git a/game_web/web_group/target/maven-status/maven-compiler-plugin/compile/compile/createdFiles.lst b/game_web/web_group/target/maven-status/maven-compiler-plugin/compile/compile/createdFiles.lst new file mode 100644 index 0000000..e69de29 diff --git a/game_web/web_group/target/maven-status/maven-compiler-plugin/compile/compile/inputFiles.lst b/game_web/web_group/target/maven-status/maven-compiler-plugin/compile/compile/inputFiles.lst new file mode 100644 index 0000000..18840c3 --- /dev/null +++ b/game_web/web_group/target/maven-status/maven-compiler-plugin/compile/compile/inputFiles.lst @@ -0,0 +1,11 @@ +D:\robotpro\robot_ceshi\xtserver_anchou\game_web\web_group\src\main\java\com\group\controller\GroupController.java +D:\robotpro\robot_ceshi\xtserver_anchou\game_web\web_group\src\main\java\com\group\controller\GroupLogController.java +D:\robotpro\robot_ceshi\xtserver_anchou\game_web\web_group\src\main\java\com\group\WebInterceptor.java +D:\robotpro\robot_ceshi\xtserver_anchou\game_web\web_group\src\main\java\com\group\MainServer.java +D:\robotpro\robot_ceshi\xtserver_anchou\game_web\web_group\src\main\java\com\group\Protocol.java +D:\robotpro\robot_ceshi\xtserver_anchou\game_web\web_group\src\main\java\com\group\controller\GroupRoomController.java +D:\robotpro\robot_ceshi\xtserver_anchou\game_web\web_group\src\main\java\com\group\job\UpdatePlayRoomJob.java +D:\robotpro\robot_ceshi\xtserver_anchou\game_web\web_group\src\main\java\com\group\service\GroupRoomService.java +D:\robotpro\robot_ceshi\xtserver_anchou\game_web\web_group\src\main\java\com\group\service\GroupPublisherService.java +D:\robotpro\robot_ceshi\xtserver_anchou\game_web\web_group\src\main\java\com\group\service\GroupService.java +D:\robotpro\robot_ceshi\xtserver_anchou\game_web\web_group\src\main\java\com\group\service\GroupLogService.java diff --git a/game_web/web_group/target/maven-status/maven-compiler-plugin/testCompile/testCompile/createdFiles.lst b/game_web/web_group/target/maven-status/maven-compiler-plugin/testCompile/testCompile/createdFiles.lst new file mode 100644 index 0000000..e69de29 diff --git a/game_web/web_group/target/maven-status/maven-compiler-plugin/testCompile/testCompile/inputFiles.lst b/game_web/web_group/target/maven-status/maven-compiler-plugin/testCompile/testCompile/inputFiles.lst new file mode 100644 index 0000000..a11b0a2 --- /dev/null +++ b/game_web/web_group/target/maven-status/maven-compiler-plugin/testCompile/testCompile/inputFiles.lst @@ -0,0 +1,2 @@ +D:\robotpro\robot_ceshi\xtserver_anchou\game_web\web_group\src\test\java\web_group\Main.java +D:\robotpro\robot_ceshi\xtserver_anchou\game_web\web_group\src\test\java\web_group\DataClearUtils.java diff --git a/libs/robot_common/.idea/kotlinc.xml b/libs/robot_common/.idea/kotlinc.xml new file mode 100644 index 0000000..7e340a7 --- /dev/null +++ b/libs/robot_common/.idea/kotlinc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/libs/robot_common/src/main/java/hunan/HuNanChangSha.java b/libs/robot_common/src/main/java/hunan/HuNanChangSha.java index 935c5c6..612663d 100644 --- a/libs/robot_common/src/main/java/hunan/HuNanChangSha.java +++ b/libs/robot_common/src/main/java/hunan/HuNanChangSha.java @@ -1844,7 +1844,7 @@ public class HuNanChangSha { public static void main(String[] args) { HuNanChangSha huNanChangSha = new HuNanChangSha(); ITObject params = TObject.newInstance(); - TaurusClient tc = new TaurusClient("127.0.0.1", "10", TaurusClient.ConnectionProtocol.Tcp); + TaurusClient tc = new TaurusClient("8.138.242.190", "10", TaurusClient.ConnectionProtocol.Tcp); List hands1 = new ArrayList<>(); hands1.add(209); hands1.add(209); diff --git a/libs/robot_common/src/main/java/hunan/JiQiRens.java b/libs/robot_common/src/main/java/hunan/JiQiRens.java index 6e236c3..638c5a9 100644 --- a/libs/robot_common/src/main/java/hunan/JiQiRens.java +++ b/libs/robot_common/src/main/java/hunan/JiQiRens.java @@ -348,7 +348,7 @@ public class JiQiRens { } if ("10".equalsIgnoreCase(wanfaId)) { - client = new TaurusClient("127.0.0.1:6311", "game", TaurusClient.ConnectionProtocol.Tcp); + client = new TaurusClient("8.138.242.190:6311", "game", TaurusClient.ConnectionProtocol.Tcp); } // if ("66".equalsIgnoreCase(wanfaId)) { diff --git a/libs/robot_common/src/main/java/taurus/newRobot/jiqiren.java b/libs/robot_common/src/main/java/taurus/newRobot/jiqiren.java index fab9b84..f91577c 100644 --- a/libs/robot_common/src/main/java/taurus/newRobot/jiqiren.java +++ b/libs/robot_common/src/main/java/taurus/newRobot/jiqiren.java @@ -98,7 +98,7 @@ public class jiqiren { } if ("10".equalsIgnoreCase(wanfaId)) { - client = new TaurusClient("127.0.0.1:6311", "game", TaurusClient.ConnectionProtocol.Tcp); + client = new TaurusClient("8.138.242.190:6311", "game", TaurusClient.ConnectionProtocol.Tcp); //TaurusClient client1=getClient(); client.connect(); mapclient.put(randomKeyFromList, client); @@ -220,7 +220,7 @@ public class jiqiren { // client = new TaurusClient("8.138.242.190:6421", "game", TaurusClient.ConnectionProtocol.Tcp); } if ("10".equalsIgnoreCase(wanfaId)) { - client = new TaurusClient("127.0.0.1:6311", "game", TaurusClient.ConnectionProtocol.Tcp); + client = new TaurusClient("8.138.242.190:6311", "game", TaurusClient.ConnectionProtocol.Tcp); client.connect(); mapclient.put(randomKeyFromList, client); } @@ -404,7 +404,7 @@ public class jiqiren { } if ("10".equalsIgnoreCase(wanfaId)) { - client = new TaurusClient("127.0.0.1:6311", "game", TaurusClient.ConnectionProtocol.Tcp); + client = new TaurusClient("8.138.242.190:6311", "game", TaurusClient.ConnectionProtocol.Tcp); // client.setSession(session); client.connect(); mapclient.put(randomKeyFromList, client); diff --git a/libs/robot_common/src/main/java/taurus/newRobot/lianjiejiqiren.java b/libs/robot_common/src/main/java/taurus/newRobot/lianjiejiqiren.java index c02ef5b..20225df 100644 --- a/libs/robot_common/src/main/java/taurus/newRobot/lianjiejiqiren.java +++ b/libs/robot_common/src/main/java/taurus/newRobot/lianjiejiqiren.java @@ -58,7 +58,7 @@ public class lianjiejiqiren { ITObject param = message.param; //回调协议号 String command = message.command; - + System.out.println("command: " + command); //根据玩法id 调用不同的回调 if (StringUtil.isNotEmpty(command)) { if ("66".equalsIgnoreCase(wanfaId)) {//跑的快 @@ -585,7 +585,17 @@ public class lianjiejiqiren { //吃碰杠 huNanChangSha.actionCard(param, client); - } else if ("2009".equalsIgnoreCase(command)) { + }else if("2002".equalsIgnoreCase(command)) { + System.out.println("comds:2002"); + + ITObject params = TObject.newInstance(); + client.send("1005", params, response -> { + }); + + }else if ("2009".equalsIgnoreCase(command)) { + + + //db0 Jedis jedis22 = Redis.use().getJedis(); //db2 @@ -605,13 +615,13 @@ public class lianjiejiqiren { if (jedis33.hget(getKey, "pid") != null) { String circleId1 = jedis33.hget(getKey, "circleId"); String pid = jedis33.hget(getKey, "pid"); - + System.out.println("comds2:2002"); String key = "g{" + circleId1 + "}:play:" + pid; if (jedis33.hget(getKey, "room_id") != null) { String roomid = jedis33.hget(getKey, "room_id"); String roomKey = "room:" + roomid; - + System.out.println("comds3:2002"); if (jedis22.hget(roomKey, "players") != null) { String players = jedis22.hget(roomKey, "players"); if (!players.equals("[]")) { @@ -619,6 +629,7 @@ public class lianjiejiqiren { playerIds2 = players.split(","); if (playerIds2.length == 1) { if (!pid.equals("0")) { + System.out.println("comds4:2002"); Jedis jedis20 = Redis.use("group1_db11").getJedis(); System.out.println("进入 -------------------------"); jedis20.hincrBy(key, "leftover_robot", 1); @@ -638,6 +649,7 @@ public class lianjiejiqiren { jedis33.hset(getKey, "pid", "0"); jedis33.hset(getKey, "room_id", "0"); //退出修改机器人状态 + System.out.println("comds5:2002"); jedis33.hset(key, String.valueOf(aid), "0"); TaurusClient taurusClient = (TaurusClient) entry.getValue(); taurusClient.send("1005", params, response -> {